wiki:Maven

Pre requisites

  • Download and install a JDK
  • Download and install subversion client (svn command line)
  • Download and install Maven 2.0.9 min (Add MVN_HOME and update PATH environment)

Download latest project sources

  • use subversion command line client
    svn co http://svn.eparapher.com/trunk eparapher
    cd eparapher
    

Build project from sources

  • standard : build for your platform only with html documentation
    mvn install
    
  • Fast : build for your platform, skip documentation generation and unit testing
    mvn -Dfastbuild -Dmaven.test.skip=true install
    
  • All documentation : build for your platform only with documentation in PDF & Html
    mvn -Puserguides install
    
  • Build for all available platforms
    mvn -Pwin32,macosx,linux-x86,linux-x86_64,linux-ppc install
    

Clean

mvn clean eclipse:clean studio:clean

eclipse workspace

mvn eclipse:eclipse studio:eclipse

Release project

subversion

TODO

site

mvn site site:deploy

Project's Maven Repository

Adding a new artefact

TODO