About ${project.name} ${project.organization.name}

${project.description}

Javadoc for this module can be found here.

Start developing your applications by obtaining ${project.name} using any of the following methods:

By far the simplest method is to develop your application using Maven and add the following settings to your pom.xml:

<repositories> <repository> <id>forgerock-staging-repository</id> <name>ForgeRock Release Repository</name> <url>${mavenRepoReleases}</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>forgerock-snapshots-repository</id> <name>ForgeRock Snapshot Repository</name> <url>${mavenRepoSnapshots}</url> <releases> <enabled>false</enabled> </releases> </repository> </repositories> ... <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> </dependency> </dependencies>

If you are not using Maven then you will need to download a pre-built binary from the ForgeRock Maven repository, along with any compile time dependencies:

For the DIY enthusiasts you can build it yourself by checking out the latest code using Subversion and building it with Maven 3.

The following example shows how ${project.name} may be used:

TODO