Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.util.doc/javadoc.ant')
-rw-r--r--plugins/org.eclipse.net4j.util.doc/javadoc.ant18
1 files changed, 11 insertions, 7 deletions
diff --git a/plugins/org.eclipse.net4j.util.doc/javadoc.ant b/plugins/org.eclipse.net4j.util.doc/javadoc.ant
index d3ed2c0a7b..9bcf433537 100644
--- a/plugins/org.eclipse.net4j.util.doc/javadoc.ant
+++ b/plugins/org.eclipse.net4j.util.doc/javadoc.ant
@@ -61,7 +61,8 @@
windowtitle="${javadoc.name}"
doctitle="<h1>${javadoc.name}</h1>"
overview="${javadoc.project}/javadocOverview.html"
- bottom="<i>Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.</i>">
+ bottom="<i>Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.</i>"
+ failonerror="true">
<doclet name="org.jboss.apiviz.APIviz"
path="${additional.jars}/APIVIZ/bin;${additional.jars}/APIVIZ/lib/jdepend-2.9.1.jar">
@@ -176,19 +177,22 @@
<fileset refid="desthtml" />
</replaceregexp>
- <java classname="org.eclipse.emf.cdo.releng.MakeHrefsRelative" dir="${basedir}" fork="true">
- <classpath path="plugins/org.eclipse.emf.cdo.releng/bin" />
+ <java classname="org.eclipse.emf.cdo.releng.doc.MakeHrefsRelative" dir="${basedir}" fork="true" failonerror="true">
+ <classpath path="plugins/org.eclipse.emf.cdo.releng.doc/bin" />
<arg value="${destdir}" />
</java>
- <java classname="org.eclipse.emf.cdo.releng.MovePackageDescriptions" dir="${basedir}" fork="true">
- <classpath path="plugins/org.eclipse.emf.cdo.releng/bin" />
+ <java classname="org.eclipse.emf.cdo.releng.doc.MovePackageDescriptions"
+ dir="${basedir}"
+ fork="true"
+ failonerror="true">
+ <classpath path="plugins/org.eclipse.emf.cdo.releng.doc/bin" />
<arg value="${destdir}" />
</java>
<!--
- <java classname="org.eclipse.emf.cdo.releng.SortListItems" dir="${basedir}" fork="true">
- <classpath path="plugins/org.eclipse.emf.cdo.releng/bin" />
+ <java classname="org.eclipse.emf.cdo.releng.doc.SortListItems" dir="${basedir}" fork="true" failonerror="true">
+ <classpath path="plugins/org.eclipse.emf.cdo.releng.doc/bin" />
<arg value="${destdir}" />
</java>
-->

Back to the top