Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add info about new Java Maven parent project

...

To build everything use the following commands:

 

Code Block
titleBuilding and installing the latest Java v2 parent Maven project
$ cd /tmp
$ svn co https://svn.shibboleth.net/java-parent-projects/java-parent-project-v2/trunk java-parent-project-v2
$ cd java-parent-project-v2
$ mvn -P release -DskipTests install

This will install the latest v2 Maven parent project in the local Maven repository.

 

Code Block
titleBuilding the latest OpenSAML2 version from source
$ cd /tmp
$ svn co https://svn.shibboleth.net/java-opensaml2-main/branches/REL_2 java-opensaml2-main
$ cd java-opensaml2-main
$ mvn -P release -DskipTests install

This will install the OpenSAML2 files and dependencies in your local Maven repository.

 

Code Block
titleBuilding the latest IdP version from source
$ cd /tmp
$ svn co https://svn.shibboleth.net/java-shib-idp2-main/branches/REL_2 java-shib-idp2-main
$ cd java-shib-idp2-main
$ mvn -P release -DskipTests install

...