Update build.xml

This commit is contained in:
David Benson 2024-12-27 16:55:32 +00:00 committed by GitHub
parent 1c77a6165b
commit 32923e361a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 8 deletions

View File

@ -5,13 +5,7 @@
<property file="build.properties" />
<taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask" classpath="${jscompiler}" />
<target name="merge">
</target>
<target name="app" depends="merge">
</target>
<target name="atlas" depends="app">
<target name="atlas">
<concat destfile="${war.dir}/js/atlas-viewer.min.js" fixlastline="yes" append="no">
<file name="${basedir}/base-viewer.min.js" />
<file name="${war.dir}/js/orgchart.min.js" />
@ -76,7 +70,7 @@
<delete file="${basedir}/base-viewer.min.js"/>
</target>
<target name="war" depends="app, javac" description="Create the stand-alone war file">
<target name="war" depends="javac" description="Create the stand-alone war file">
<zip destfile="${build.dir}/${war.name}" basedir="${war.dir}" >
</zip>
</target>