index.xml.vm revision 47296dcccca008c937a201c9301a3b231dd3b47f
0N/A<?xml version="1.0" encoding="UTF-8"?>
0N/A<!--
0N/A ! CCPL HEADER START
0N/A !
0N/A ! This work is licensed under the Creative Commons
0N/A ! Attribution-NonCommercial-NoDerivs 3.0 Unported License.
0N/A ! To view a copy of this license, visit
0N/A ! http://creativecommons.org/licenses/by-nc-nd/3.0/
0N/A ! or send a letter to Creative Commons, 444 Castro Street,
0N/A ! Suite 900, Mountain View, California, 94041, USA.
0N/A !
0N/A ! You can also obtain a copy of the license at
0N/A ! trunk/opendj3/legal-notices/CC-BY-NC-ND.txt.
0N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
0N/A !
0N/A ! If applicable, add the following below this CCPL HEADER, with the fields
0N/A ! enclosed by brackets "[]" replaced with your own identifying information:
0N/A ! Portions Copyright [yyyy] [name of copyright owner]
0N/A !
0N/A ! CCPL HEADER END
0N/A !
0N/A ! Copyright 2013 ForgeRock AS
0N/A !
0N/A-->
0N/A<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
0N/A xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
0N/A <properties>
0N/A <title>About ${project.name}</title>
0N/A <author email="opendj-dev@forgerock.org">${project.organization.name}</author>
0N/A </properties>
0N/A <body>
0N/A <section name="About ${project.name}">
0N/A <p>
0N/A ${project.description}
0N/A </p>
0N/A </section>
0N/A <section name="Get ${project.name}">
0N/A <p>
0N/A Start developing your applications by obtaining ${project.name}
0N/A using any of the following methods:
0N/A </p>
0N/A <subsection name="Maven">
0N/A <p>
0N/A By far the simplest method is to develop your application using Maven
0N/A and add the following settings to your <b>pom.xml</b>:
0N/A </p>
0N/A <source>&lt;repositories>
0N/A &lt;repository>
0N/A &lt;id>forgerock-staging-repository&lt;/id>
0N/A &lt;name>ForgeRock Release Repository&lt;/name>
0N/A &lt;url>${mavenRepoReleases}&lt;/url>
0N/A &lt;snapshots>
0N/A &lt;enabled>false&lt;/enabled>
0N/A &lt;/snapshots>
0N/A &lt;/repository>
0N/A &lt;repository>
0N/A &lt;id>forgerock-snapshots-repository&lt;/id>
0N/A &lt;name>ForgeRock Snapshot Repository&lt;/name>
0N/A &lt;url>${mavenRepoSnapshots}&lt;/url>
0N/A &lt;releases>
0N/A &lt;enabled>false&lt;/enabled>
0N/A &lt;/releases>
0N/A &lt;/repository>
0N/A&lt;/repositories>
0N/A
0N/A...
0N/A
0N/A&lt;dependencies>
0N/A &lt;dependency>
0N/A &lt;groupId>${project.groupId}&lt;/groupId>
0N/A &lt;artifactId>${project.artifactId}&lt;/artifactId>
0N/A &lt;version>${project.version}&lt;/version>
0N/A &lt;/dependency>
0N/A&lt;/dependencies></source>
0N/A </subsection>
0N/A <subsection name="Download">
0N/A <p>
0N/A If you are not using Maven then you will need to download a pre-built
0N/A binary from the ForgeRock Maven repository, along with any compile
0N/A time <a href="dependencies.html">dependencies</a>:
0N/A </p>
0N/A <ul>
0N/A <li><a href="${mavenRepoReleases}/org/forgerock/opendj/${project.artifactId}">Stable releases</a></li>
0N/A <li><a href="${mavenRepoSnapshots}/org/forgerock/opendj/${project.artifactId}/${project.version}">Latest development snapshot</a></li>
0N/A </ul>
0N/A </subsection>
0N/A <subsection name="Build">
0N/A <p>
0N/A For the DIY enthusiasts you can build it yourself by checking out the
0N/A latest code using <a href="source-repository.html">Subversion</a>
0N/A and building it with Maven 3.
0N/A </p>
0N/A </subsection>
0N/A </section>
0N/A <section name="Getting started">
0N/A <p>
0N/A The following example shows how ${project.name} may be used:
0N/A </p>
0N/A <source>TODO</source>
0N/A </section>
0N/A </body>
0N/A</document>
0N/A