Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Building the installers is a two phase process :

Code Block
cd <root of apache directory server sources>apacheds-trunk
mvn install
cd installers/apacheds/server-installers
mvn -Pserver-installer install

That's it, the jars will be find in target/images/apacheds-1.5.0-?SNAPSHOT-<XXXXXX>-setup.jar where XXXXXX is your local system and ? is the feature release minor number for the 1.5 branch.

Starting the server without installation

The directory apacheds-trunk/installers/serverapacheds-main noarch contains a script for Linux (apacheds.sh) and one for Windows (apacheds.bat) which can be used for starting the server without the need to install it first (as non-root-user on Linux and non-Windows-service on Windows).

Linux:

No Format
cd apacheds-trunk/installers/serverapacheds-mainnoarch
./apacheds.sh

Integration test

To run integration tests, just use the following command :

Code Block
cd <root of apache directory server sources>apacheds-trunk
mvn -Dintegration test

Eclipse

...

To build the .project and .classpath files for eclipse, type the following commands :

Code Block
cd <root of apache directory server sources>apacheds-trunk
mvn clean install
mvn eclipse:eclipse

...

The coding standards including an eclipse code formatting profile is available here..