Skip to content

Commit

Permalink
Support creating Eclipse Help output as JAR file
Browse files Browse the repository at this point in the history
Signed-off-by: Robert D Anderson <robander@us.ibm.com>
  • Loading branch information
Robert D Anderson committed May 11, 2017
1 parent 45f46d0 commit 46578fd
Showing 1 changed file with 9 additions and 6 deletions.
Expand Up @@ -31,11 +31,9 @@ See the accompanying LICENSE file for applicable license.
unless="noMap"
depends="dita.eclipsehelp.init, build-init, preprocess,
xhtml.topics,
copy-css">
<antcall target="dita.map.eclipse"></antcall>
<jar destfile="${output.dir}/${args.eclipsehelp.jar.name}" basedir="${dita.output.dir}" if:set="args.eclipsehelp.jar.name">
<include name="**/*"/>
</jar>
copy-css,
dita.map.eclipse,
build.eclipse.jar">
</target>

<target name="dita.map.eclipse"
Expand All @@ -44,7 +42,6 @@ See the accompanying LICENSE file for applicable license.
dita.map.eclipse.fragment.language.init,
dita.map.eclipse.fragment.language.country.init,
dita.map.eclipse.fragment.error">

</target>

<target name="dita.map.eclipse.init" if="eclipse.plugin"
Expand Down Expand Up @@ -473,4 +470,10 @@ See the accompanying LICENSE file for applicable license.
</copy>
</target>

<target name="build.eclipse.jar">
<jar destfile="${output.dir}/${args.eclipsehelp.jar.name}" basedir="${dita.output.dir}" if:set="args.eclipsehelp.jar.name">
<include name="**/*"/>
</jar>
</target>

</project>

0 comments on commit 46578fd

Please sign in to comment.