Installation of maven
Jump to navigation
Jump to search
Ubuntu (11.04)[edit]
- install maven:
sudo apt-get install maven2
- check mvn version
mvn -version
Windows[edit]
- First download the maven binaries.
wget http://apache.abdaal.com/maven/binaries/apache-maven-2.2.1-bin.zip
- Extract them to c:\programme for example.
- Now try running maven with this command
mvn
Further common steps[edit]
- If the previous steps was successful, point your browser to Nexus.
- If you want to contribute snapshot builds and releases to the project contact your local Nexus administrator to grant you
- the needed rights.
- Create a file at ~/.m2/settings.xml or C:\Documents and Settings\<user>\.m2\repository for windows with the following entries
<settings> <profiles> <profile> <id>mysettings</id> <properties> <!-- here you can set and override systemwide properties, valid in all projects --> </properties> </profile> </profiles> <activeProfiles> <!-- using a development environment --> <activeProfile>env-development</activeProfile> <!-- and jboss 4.0 --> <activeProfile>jboss42</activeProfile> <activeProfile>mysettings</activeProfile> </activeProfiles> <mirrors> <mirror> <id>nexus</id> <url>http://rd.mpdl.mpg.de/nexus/content/groups/public</url> <mirrorOf>*</mirrorOf> </mirror> </mirrors> <servers> <server> <id>snapshots</id> <username>nexus_username</username> <password>nexus_password</password> </server> <server> <id>snapshots</id> <username>nexus_username</username> <password>nexus_password</password> </server> </servers> </settings>
- Ask your administrator to give you the current user/password combinations and put it in the properties section of your setting.xml
- Checkout the project, e.g common_services
svn co https://zim02.gwdg.de/repos/common/trunk/common_services/
- Now pick a integration test module (e.g citationmanager_ear, pubman_logic_ear or faces_logic_ear) and type
mvn clean install
- This will download a jboss server for integration tests to your home folder.
- Now change into homefolder and do the following steps (for Ubuntu):
cd jboss mkdir server_eclipse cp jboss-<jboss-version> server_eclipse
- This will copy another jboss installation into server_eclipse, since it's not possible to have the same jboss installation for the integration tests and eclipse together.
- We will need that later if you want to use eclipse for developing.
You can now start developing. For the first try, why not trying to compile all the project modules? Go to the root of the working dir and type:
mvn clean compile
This should clean and compile all project modules.