Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTran Le2012-08-28 22:01:49 +0000
committerTran Le2012-08-28 22:29:30 +0000
commit340318de33df661946a8a5cbecd9918b7fdc6551 (patch)
tree13b995d80202c23c43c8047b7cbb70d359088ac5 /org.eclipse.jpt.doc.isv/customBuildCallbacks.xml
parent3f09be219e0653795d242d51ab08ec31d4057011 (diff)
downloadwebtools.dali-340318de33df661946a8a5cbecd9918b7fdc6551.tar.gz
webtools.dali-340318de33df661946a8a5cbecd9918b7fdc6551.tar.xz
webtools.dali-340318de33df661946a8a5cbecd9918b7fdc6551.zip
Added Javadoc generation.v201208282228
Diffstat (limited to 'org.eclipse.jpt.doc.isv/customBuildCallbacks.xml')
-rw-r--r--org.eclipse.jpt.doc.isv/customBuildCallbacks.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/org.eclipse.jpt.doc.isv/customBuildCallbacks.xml b/org.eclipse.jpt.doc.isv/customBuildCallbacks.xml
new file mode 100644
index 0000000000..de63223625
--- /dev/null
+++ b/org.eclipse.jpt.doc.isv/customBuildCallbacks.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012 Oracle. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0, which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. Contributors: Oracle - initial API and implementation -->
+
+<!-- ===================================================================== --> <!-- Custom targets called from a project's generated build.xml --> <!-- Set customBuildCallbacks=<path/to/this/file> in your build.properties.--> <!-- ===================================================================== --> <project name="Build specific targets and properties" default="noDefault">
+
+ <import file="${eclipse.pdebuild.templates}/plugins/customBuildCallbacks.xml" />
+
+ <target name="noDefault">
+ <echo message="This file must be called with explicit targets" />
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before the target gather.bin.parts -->
+ <!-- Available parameters : --> <!-- build.result.folder - folder containing the build results --> <!-- target.folder - destination folder -->
+ <!-- destination.temp.folder - the directory plugins will be collected to -->
+ <!-- feature.directory - the directory containing the resulting feature -->
+ <!-- ===================================================================== -->
+ <target name="pre.gather.bin.parts">
+ <antcall target="build.index"/>
+ </target>
+
+ <target name="build.index" description="Builds search index for the plug-in: org.eclipse.jpt.doc.isv." if="eclipse.running">
+ <ant antfile="buildDoc.xml" />
+ </target>
+
+</project>

Back to the top