bef0cfc
--- build.xml~	2014-06-12 17:23:24.000000000 +0200
bef0cfc
+++ build.xml	2015-06-23 10:30:57.374976304 +0200
bef0cfc
@@ -17,18 +17,6 @@
bef0cfc
     <mkdir dir="${java}" />
bef0cfc
     <mkdir dir="${classes}" />
bef0cfc
     <mkdir dir="${dist}" />
bef0cfc
-    <loadfile property="cupversion" srcFile="version.txt"/>
bef0cfc
-    <exec executable="svn" outputproperty="svnversion">
bef0cfc
-      <arg value="info"/>
bef0cfc
-      <redirector>
bef0cfc
-	<outputfilterchain>
bef0cfc
-	  <linecontains>
bef0cfc
-	    <contains value="Revision"/>
bef0cfc
-	  </linecontains>
bef0cfc
-	  <deletecharacters chars="Revision: "/>
bef0cfc
-        </outputfilterchain>
bef0cfc
-      </redirector>
bef0cfc
-    </exec>
8f8cca0
   </target>
bef0cfc
 
bef0cfc
   <property environment="env" />
bef0cfc
@@ -78,7 +66,6 @@
bef0cfc
    <jar jarfile="${dist}/java-cup-11b.jar" basedir="${classes}">
bef0cfc
       <manifest>
bef0cfc
         <attribute name="Main-Class" value="java_cup/Main" />
bef0cfc
-	<attribute name="Class-Path" value="java-cup-11b-runtime.jar" />
bef0cfc
       </manifest>
bef0cfc
     </jar>
bef0cfc
     <jar jarfile="${dist}/java-cup-11b-runtime.jar" basedir="${classes}" includes="java_cup/runtime/*">
bef0cfc
@@ -143,4 +130,10 @@
bef0cfc
     <echo message="  versionbump    to inc release" />
bef0cfc
   </target>
bef0cfc
 
bef0cfc
+  <target name="javadoc">
bef0cfc
+    <mkdir dir="${dist}/javadoc"/>
bef0cfc
+    <javadoc destdir="${dist}/javadoc" author="true" version="true" use="true" windowtitle="java_cup API">
bef0cfc
+      <fileset dir="src" defaultexcludes="yes" />
bef0cfc
+    </javadoc>
bef0cfc
+  </target>
8f8cca0
 </project>