Author: Andreas Tille <tille@debian.org>
Last-Update: Sat, 05 Sep 2015 07:13:34 +0200
Description: Currently only the library is packaged while the web interface is ignored
 The rationale is that libalter-java is packaged as a dependency for
 other packages.  There was no explicite request to package the
 web interface which involves a lot of third party JARs and thus
 makes it complex to package.

--- a/build.xml
+++ b/build.xml
@@ -1,9 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project name="ALTER" default="buildall" basedir="."> 
+<project name="ALTER" default="buildlib" basedir="."> 
 
   <target name="buildlib">
     <ant antfile="build.xml" dir="./alter-lib" inheritAll="false"/>   
-    <copy file="./alter-lib/dist/ALTER.jar" tofile="./web/ALTER.jar"/>
   </target>
   
   <target name="buildall" depends="clean, buildlib">
@@ -11,8 +10,6 @@
   </target>
   <target name="clean">
     <ant antfile="build.xml" dir="./alter-lib" target="clean" inheritAll="false"/>   
-    <ant antfile="build.xml" dir="./web" target="clean" inheritAll="false"/> 
-    <delete file="./web/ALTER.jar"/>
   </target>
   
 </project>
