4.0.0
org.forgerock
forgerock-parent
1.0.0
org.forgerock.opendj
opendj-project
3.0.0-SNAPSHOT
pom
OpenDJ Directory Services Project
OpenDJ is a new LDAPv3 compliant directory service, developed for the Java
platform, providing a high performance, highly available and secure store
for the identities managed by enterprises.
2011
http://opendj.forgerock.org
Jira
https://bugster.forgerock.org/jira/browse/OPENDJ
OpenDJ Users Mailing List
http://lists.forgerock.org/pipermail/opendj/
https://lists.forgerock.org/mailman/listinfo/opendj/
https://lists.forgerock.org/mailman/listinfo/opendj/
opendj@forgerock.org
OpenDJ Developers Mailing List
http://lists.forgerock.org/pipermail/opendj-dev/
https://lists.forgerock.org/mailman/listinfo/opendj-dev/
https://lists.forgerock.org/mailman/listinfo/opendj-dev/
opendj-dev@forgerock.org
https://svn.forgerock.org/opendj/trunk/opendj3/
scm:svn:https://svn.forgerock.org/opendj/trunk/opendj3/
scm:svn:https://svn.forgerock.org/opendj/trunk/opendj3/
jenkins
http://builds.forgerock.org/job/OpenDJ3
mail
true
true
false
false
opendj-dev@forgerock.org
forgerock.org
OpenDJ Community
${siteDistributionURL}
opendj-build-tools
opendj-ldap-sdk
opendj-ldap-toolkit
opendj-ldap-sync
opendj-ldap-sdk-examples
${project.version}
version.not.defined
2.5.0-SNAPSHOT
2.4.5
2.5.0
${basedir}/src/main/docbkx
${basedir}/src/main/docbkx-stylesheets
${basedir}/target/docbkx
${basedir}/src/fonts
${basedir}/target/fonts
${basedir}/target/site
scp://forgerock.org/var/www/vhosts/opendj.forgerock.org/httpdocs
1.4.0
com.agilejava.docbkx
docbkx-fop-support
2.0.14
false
pre-site
generate
com.agilejava.docbkx
docbkx-maven-plugin
2.0.14
false
${basedir}/src/main/docbkx
yes
http://docbook.sourceforge.net/release/images/draft.png
1
*/OpenDJ-*.xml
true
DejaVuSans
normal
${fonts-src}/DejaVuSans.ttf
${fonts-gen}/DejaVuSans-metrics.xml
DejaVuSans
bold
${fonts-src}/DejaVuSansCondensed-Bold.ttf
${fonts-gen}/DejaVuSansCondensed-Bold-metrics.xml
DejaVuSans
normal
${fonts-src}/DejaVuSans-Oblique.ttf
${fonts-gen}/DejaVuSans-Oblique-metrics.xml
DejaVuSans
bold
${fonts-src}/DejaVuSansCondensed-BoldOblique.ttf
${fonts-gen}/DejaVuSansCondensed-BoldOblique-metrics.xml
DejaVuSansMono
normal
${fonts-src}/DejaVuSansMono.ttf
${fonts-gen}/DejaVuSansMono-metrics.xml
DejaVuSansMono
bold
${fonts-src}/DejaVuSansMono-Bold.ttf
${fonts-gen}/DejaVuSansMono-Bold-metrics.xml
DejaVuSansMono
normal
${fonts-src}/DejaVuSansMono-Oblique.ttf
${fonts-gen}/DejaVuSansMono-Oblique-metrics.xml
DejaVuSansMono
bold
${fonts-src}/DejaVuSansMono-BoldOblique.ttf
${fonts-gen}/DejaVuSansMono-BoldOblique-metrics.xml
DejaVuSerif
normal
${fonts-src}/DejaVuSerif.ttf
${fonts-gen}/DejaVuSerif-metrics.xml
DejaVuSerif
bold
${fonts-src}/DejaVuSerifCondensed-Bold.ttf
${fonts-gen}/DejaVuSerifCondensed-Bold-metrics.xml
DejaVuSerif
normal
${fonts-src}/DejaVuSerif-Italic.ttf
${fonts-gen}/DejaVuSerif-Italic-metrics.xml
DejaVuSerif
bold
${fonts-src}/DejaVuSerifCondensed-BoldItalic.ttf
${fonts-gen}/DejaVuSerifCondensed-BoldItalic-metrics.xml
true
true
olinkdb-admin-guide
pre-site
*/OpenDJ-Admin-Guide.xml
only
${basedir}/target/admin-guide.target.db
generate-html
olinkdb-dev-guide
pre-site
*/OpenDJ-Dev-Guide.xml
only
${basedir}/target/dev-guide.target.db
generate-html
olinkdb-install-guide
pre-site
*/OpenDJ-Install-Guide.xml
only
${basedir}/target/install-guide.target.db
generate-html
olinkdb-release-notes
pre-site
*/OpenDJ-Release-Notes.xml
only
${basedir}/target/release-notes.target.db
generate-html
doc-epub
pre-site
generate-epub
${dbstyle-dir}/epub/coredoc.xsl
DejaVuSans
doc-fo
pre-site
generate-pdf
generate-rtf
${dbstyle-dir}/fo/coredoc.xsl
doc-manpages
pre-site
generate-manpages
${dbstyle-dir}/man/manpages.xsl
chunked-html
pre-site
generate-html
true
${dbstyle-dir}/html/chunked.xsl
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html >
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
// On double-click, reformat <div class="screen"> for easy copying.
$(document).ready(function() {
// Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=116083
if (navigator.userAgent.match(/Firefox/i)) {
$(".screen").wrap("<pre />");
$(".programlisting").wrap("<pre />");
}
$(".screen").attr("title", "Double-click [-] to flatten lines.");
$(".screen").prepend('<img src="../images/minus.png" class="toggle">');
});
$(".screen").live("dblclick", function() {
$(this).replaceWith(
"<div class=\"flat\" title=\"Double-click [+] to wrap long lines.\">" +
$(this).html().replace(/minus\.png/,"plus.png").replace(/\n /g," ") + "\n<!--" + $(this).html() + "-->" +
"</div>");
});
$(".flat").live("dblclick", function() {
$(this).replaceWith(
"<div class=\"screen\" title=\"Double-click [-] to flatten lines.\">" +
$(this).html().replace(/(.|\n)+<!\-\-/m,"").replace(/\-\-\>/,"").replace(/plus\.png/,"minus.png") +
"</div>");
});
</script>
<link rel="shortcut icon" href="http://forgerock.org/favicon.ico">
</head >
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23412190-8']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script></body >
doc-single-html
pre-site
generate-html
false
${dbstyle-dir}/html/coredoc.xsl
${docbkx-src}/olinkdb-single-html-pages.xml
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html >
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
// On double-click, reformat <div class="screen"> for easy copying.
$(document).ready(function() {
// Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=116083
if (navigator.userAgent.match(/Firefox/i)) {
$(".screen").wrap("<pre />");
$(".programlisting").wrap("<pre />");
}
$(".screen").attr("title", "Double-click [-] to flatten lines.");
$(".screen").prepend('<img src="./images/minus.png" class="toggle">');
});
$(".screen").live("dblclick", function() {
$(this).replaceWith(
"<div class=\"flat\" title=\"Double-click [+] to wrap long lines.\">" +
$(this).html().replace(/minus\.png/,"plus.png").replace(/\n /g," ") + "\n<!--" + $(this).html() + "-->" +
"</div>");
});
$(".flat").live("dblclick", function() {
$(this).replaceWith(
"<div class=\"screen\" title=\"Double-click [-] to flatten lines.\">" +
$(this).html().replace(/(.|\n)+<!\-\-/m,"").replace(/\-\-\>/,"").replace(/plus\.png/,"minus.png") +
"</div>");
});
</script>
<link rel="shortcut icon" href="http://forgerock.org/favicon.ico">
</head>
net.sf.docbook
docbook-xml
5.0-all
resources
zip
runtime
net.sf.offo
fop-hyph
1.2
runtime
net.sf.xslthl
xslthl
2.0.2
runtime
org.apache.maven.plugins
maven-resources-plugin
false
site
copy-resources
${site-out}/doc
${docbkx-out}/epub/admin-guide
**/*.epub
${docbkx-out}/epub/dev-guide
**/*.epub
${docbkx-out}/epub/install-guide
**/*.epub
${docbkx-out}/epub/release-notes
**/*.epub
${docbkx-out}/html/
${docbkx-out}/pdf
**/*.pdf
${docbkx-out}/rtf
**/*.rtf
${basedir}/src/main/resources/docs-redirect
**/index.html
org.forgerock.maven.plugins
linktester-maven-plugin
1.0.0
false
check
pre-site
**/OpenDJ-*.xml
true
true
false
${basedir}/target/linktester.err
true
org.apache.maven.plugins
maven-compiler-plugin
1.6
1.6
org.apache.maven.plugins
maven-surefire-plugin
useDefaultListeners
false
listener
org.forgerock.opendj.maven.testng.OpenDJTestListener
org.apache.maven.plugins
maven-javadoc-plugin
protected
true
com.*
jar
org.apache.maven.plugins
maven-source-plugin
jar
org.apache.maven.plugins
maven-checkstyle-plugin
2.8
org.forgerock.opendj
opendj-build-tools
${project.version}
process-classes
org/forgerock/opendj/maven/checkstyle/check-src.xml
org/forgerock/opendj/maven/checkstyle/opendj.sourceheader
true
true
false
process-classes
checkstyle
process-test-classes
${project.build.testSourceDirectory}
org/forgerock/opendj/maven/checkstyle/check-unit-tests.xml
org/forgerock/opendj/maven/checkstyle/opendj.sourceheader
true
true
false
process-test-classes
checkstyle
org.apache.maven.plugins
maven-site-plugin
en
org.eclipse.m2e
lifecycle-mapping
1.0.0
org.forgerock.commons
i18n-maven-plugin
[1.2.0,)
generate-messages
true
true
org.apache.maven.plugins
maven-enforcer-plugin
[1.0,)
enforce
org.forgerock.commons
i18n-maven-plugin
${i18nFrameworkVersion}
org.apache.maven.plugins
maven-release-plugin
2.2.2
true
true
forked-path
true
false
deploy
-Penforce
org.apache.maven.plugins
maven-project-info-reports-plugin
2.4
index
mailing-list
issue-tracking
license
scm
forgerock-staging-repository
ForgeRock Release Repository
http://maven.forgerock.org/repo/releases
false
forgerock-snapshots-repository
ForgeRock Snapshot Repository
http://maven.forgerock.org/repo/snapshots
false
jvnet-nexus-snapshots
https://maven.java.net/content/repositories/snapshots
false
true
org.forgerock.commons
i18n-core
${i18nFrameworkVersion}
compile
org.easytesting
fest-assert
1.4
test
org.mockito
mockito-all
1.8.5
test
org.testng
testng
6.0.1
test
CDDL-1.0
http://www.opensource.org/licenses/cddl1.php
Common Development and Distribution License (CDDL) 1.0.
This license applies to OpenDJ source code as indicated in the
source files.
repo
CC BY-NC-ND 3.0
http://creativecommons.org/licenses/by-nc-nd/3.0/
Creative Commons Attribution-NonCommercial-NoDerivs 3.0
Unported. This license applies to the site content, and to the
documentation as indicated in the documentation source code.
repo