diff options
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng/build.xml')
-rw-r--r-- | plugins/org.eclipse.emf.cdo.releng/build.xml | 14 |
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 --> <!-- ============== --> |