Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-09-17 16:34:59 +0000
committerEike Stepper2011-09-17 16:34:59 +0000
commit33b8036511dbdcca24c7732d2413177d96424d78 (patch)
tree9f0dc7257e08d6edcdbb80a044c6f84d0deea03f /plugins/org.eclipse.emf.cdo.releng/build.xml
parent55c27f1d8422f3dd97f46934703254a8d8973bba (diff)
downloadcdo-33b8036511dbdcca24c7732d2413177d96424d78.tar.gz
cdo-33b8036511dbdcca24c7732d2413177d96424d78.tar.xz
cdo-33b8036511dbdcca24c7732d2413177d96424d78.zip
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng/build.xml')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index f437a13504..121402797a 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -192,6 +192,7 @@
<include name="features/**" />
<include name="plugins/**" />
<include name="zips/**" />
+ <include name="help/**" />
<include name="*.jar" />
<include name="*.xml" />
<include name="*.html" />
@@ -519,6 +520,7 @@
<property name="zips" location="${hudson.WORKSPACE}/zips" />
<mkdir dir="${zips}" />
+ <antcall target="-generate.help" />
<antcall target="-generate.index" />
<antcall target="-generate.bookmarks" />
<antcall target="-generate.dropins" />
@@ -532,6 +534,18 @@
</target>
<!-- ============== -->
+ <!-- Generate Help -->
+ <!-- ============== -->
+
+ <target name="-generate.help">
+ <copy todir="${hudson.WORKSPACE}">
+ <fileset dir="${releng}">
+ <include name="help/**"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <!-- ============== -->
<!-- Generate Index -->
<!-- ============== -->

Back to the top