Skip to content
gledakis edited this page Oct 20, 2013 · 2 revisions

Cloud Pier Setup

Prerequisites

The environment setup and component building has been automated using maven and some custom made scripts. Prerequisites are:

  • JDK 6.x
  • Maven
  • MySQL RDBMS 5.x. To bootstrap the component building procedure, first we need to create a new workspace directory, enter it and checkout the Cloud Pier Core(and UI if wanted) project from Git Hub Page:

A MySQL dump file named CleanDump.sql can be found in the downloaded code under the folder Misc. After creating a database named c4s, this file can be used to import the needed tables and initial data. The default user for connecting to the database is c4s with default password !c4s!.

The build of the project is done through Maven which takes care of all the dependencies between modules. In order to do that, first time you need to build the whole project, so each module will be compiled and installed in the local maven repository.

###By command line: .../cloudpier-core/parent/ and run the command: mvn clean install

Building a single module is possible by executing mvn clean install in the module root directory of desire. Any dependencies on other modules will be resolved using packages generated by the whole project build.

Clone this wiki locally