Difference between revisions of "Installation of maven"

From MPDLMediaWiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
This explanation is for an Ubuntu 9.04 environment. If you use another distribution or version, some commands
== Ubuntu (11.04) ==
may slightly differ.
* install maven:
* First download the maven binaries. Windows user should use the zip archive.
<pre>
<pre>
wget http://apache.abdaal.com/maven/binaries/apache-maven-2.2.1-bin.tar.gz
  sudo apt-get install maven2
</pre>
</pre>
* Extract them to e.g /usr/local or for win users c:\programme for example.
* check mvn version
<pre>
<pre>
sudo tar xfvz apache-maven-2.2.1-bin.tar.gz -C /usr/local
  mvn -version
</pre>
</pre>
* Then adept some environment variables in you preferred terminal. For the bash for example, edit ''~/.bashrc''
*  
 
== Windows ==
* First download the maven binaries.  
<pre>
<pre>
export MAVEN_OPTS="-Xmx1224m -Xms712m"
wget http://apache.abdaal.com/maven/binaries/apache-maven-2.2.1-bin.zip
export PATH=$PATH:<path_to_maven_install_dir>/bin
</pre>
</pre>
* Extract them to c:\programme for example.
* Now try running maven with this command
* Now try running maven with this command
<pre>
<pre>
mvn
mvn
</pre>
</pre>
* If the previous step was successful, point your browser to [http://archiva.mpdl.mpg.de/archiva Archiva] and create an account.
 
:If you want to contribute snapshot builds and releases to the project contact your local archiva administrator to grant you  
== Further common steps ==
 
* If the previous steps was successful, point your browser to [http://rd.mpdl.mpg.de/nexus/ Nexus].
:If you want to contribute snapshot builds and releases to the project contact your local Nexus administrator to grant you  
:the needed rights.  
:the needed rights.  
* Create a file at ''~/.m2/settings.xml'' with the following entries
* Create a file at ''~/.m2/settings.xml'' or ''C:\Documents and Settings\<user>\.m2\repository'' for windows with the following entries
 
<pre>
<pre>
<settings>
<settings>
Line 41: Line 47:
   <mirrors>
   <mirrors>
     <mirror>
     <mirror>
      <id>archiva.default</id>
            <id>nexus</id>
      <url>http://archiva.mpdl.mpg.de/archiva/repository/internal/</url>
            <url>http://rd.mpdl.mpg.de/nexus/content/groups/public</url>
      <mirrorOf>central</mirrorOf>
            <mirrorOf>*</mirrorOf>
    </mirror>
        </mirror>
   </mirrors>
   </mirrors>
   <servers>
   <servers>
       <server>
       <server>
         <id>deployment.webdav</id>
         <id>snapshots</id>
         <username>archiva_username</username>
         <username>nexus_username</username>
         <password>archiva_password</password>
         <password>nexus_password</password>
       </server>
       </server>
       <server>
       <server>
         <id>snapshots.webdav</id>
         <id>snapshots</id>
         <username>archiva_username</username>
         <username>nexus_username</username>
         <password>archiva_password</password>
         <password>nexus_password</password>
       </server>
       </server>
     </servers>
     </servers>
Line 72: Line 78:
: This will download a jboss server for integration tests to your home folder.  
: This will download a jboss server for integration tests to your home folder.  


* Now change into homefolder and do the following steps:
* Now change into homefolder and do the following steps (for Ubuntu):
<pre>
<pre>
cd jboss
cd jboss

Revision as of 16:05, 5 July 2011

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.