index.xml.vm revision 73adb2e3dbaa8a9f6448cefccb7933f68c3c7348
2454N/A<?xml version="1.0" encoding="UTF-8"?>
2887N/A<!--
2454N/A ! CDDL HEADER START
2454N/A !
2454N/A ! The contents of this file are subject to the terms of the
2454N/A ! Common Development and Distribution License, Version 1.0 only
2454N/A ! (the "License"). You may not use this file except in compliance
2454N/A ! with the License.
2454N/A !
2454N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
2454N/A ! or http://forgerock.org/license/CDDLv1.0.html.
2454N/A ! See the License for the specific language governing permissions
2454N/A ! and limitations under the License.
2454N/A !
2454N/A ! When distributing Covered Code, include this CDDL HEADER in each
2454N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
2454N/A ! If applicable, add the following below this CDDL HEADER, with the
2454N/A ! fields enclosed by brackets "[]" replaced with your own identifying
2454N/A ! information:
2454N/A ! Portions Copyright [yyyy] [name of copyright owner]
2454N/A !
2454N/A ! CDDL HEADER END
2454N/A !
2454N/A ! Copyright 2013-2015 ForgeRock AS.
2454N/A !
4618N/A-->
2454N/A<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2454N/A xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
2454N/A <properties>
2454N/A <title>About ${project.name}</title>
2454N/A <author email="opendj-dev@forgerock.org">${project.organization.name}</author>
4618N/A </properties>
2454N/A <body>
2454N/A <section name="About ${project.name}">
2454N/A <p>
2454N/A ${project.description}
2454N/A </p>
2454N/A </section>
4618N/A <section name="Documentation for ${project.name}">
4618N/A <p>
4618N/A Javadoc for this module can be found <a href="apidocs/index.html">here</a>.
4618N/A </p>
4618N/A </section>
4618N/A <section name="Get ${project.name}">
4618N/A <p>
3154N/A Start developing your applications by obtaining ${project.name}
3154N/A using any of the following methods:
3188N/A </p>
3188N/A <subsection name="Maven">
3188N/A <p>
3188N/A By far the simplest method is to develop your application using Maven
3188N/A and add the following settings to your <b>pom.xml</b>:
3188N/A </p>
3188N/A <source>&lt;repositories>
3188N/A &lt;repository>
3188N/A &lt;id>forgerock-staging-repository&lt;/id>
3188N/A &lt;name>ForgeRock Release Repository&lt;/name>
2454N/A &lt;url>${mavenRepoReleases}&lt;/url>
3188N/A &lt;snapshots>
3188N/A &lt;enabled>false&lt;/enabled>
3188N/A &lt;/snapshots>
2454N/A &lt;/repository>
3188N/A &lt;repository>
3188N/A &lt;id>forgerock-snapshots-repository&lt;/id>
2454N/A &lt;name>ForgeRock Snapshot Repository&lt;/name>
2454N/A &lt;url>${mavenRepoSnapshots}&lt;/url>
2454N/A &lt;releases>
2454N/A &lt;enabled>false&lt;/enabled>
2454N/A &lt;/releases>
2454N/A &lt;/repository>
2454N/A&lt;/repositories>
2454N/A
2454N/A...
2454N/A
2454N/A&lt;dependencies>
2454N/A &lt;dependency>
2454N/A &lt;groupId>${project.groupId}&lt;/groupId>
2454N/A &lt;artifactId>${project.artifactId}&lt;/artifactId>
2454N/A &lt;version>${project.version}&lt;/version>
2505N/A &lt;/dependency>
2454N/A&lt;/dependencies></source>
2454N/A </subsection>
2454N/A <subsection name="Download">
2454N/A <p>
2454N/A If you are not using Maven then you will need to download a pre-built
2454N/A binary from the ForgeRock Maven repository, along with any compile
2454N/A time <a href="dependencies.html">dependencies</a>:
2454N/A </p>
2454N/A <ul>
2454N/A <li><a href="${mavenRepoReleases}/org/forgerock/opendj/${project.artifactId}">Stable releases</a></li>
2454N/A <li><a href="${mavenRepoSnapshots}/org/forgerock/opendj/${project.artifactId}/${project.version}">Latest development snapshot</a></li>
2454N/A </ul>
2454N/A </subsection>
2454N/A <subsection name="Build">
2454N/A <p>
2454N/A For the DIY enthusiasts you can build it yourself by checking out the
3060N/A latest code using <a href="source-repository.html">Subversion</a>
3060N/A and building it with Maven 3.
2454N/A </p>
3060N/A </subsection>
3060N/A </section>
3060N/A <section name="Getting started">
2454N/A <p>
2454N/A The following example shows how ${project.name} may be used:
2454N/A </p>
2454N/A <source>TODO</source>
2454N/A </section>
3188N/A </body>
2454N/A</document>
2454N/A