Skip to content
Snippets Groups Projects
Commit 197b3473 authored by Anders Nilsson's avatar Anders Nilsson
Browse files

Added a jar build target.

parent 54ff7e2b
No related branches found
No related tags found
No related merge requests found
......@@ -7,3 +7,4 @@ x3d/x3d.ast
x3d/x3d.jjt
javadoc
x3d/PrettyPrint.java
SchemaCompile.jar
......@@ -6,7 +6,7 @@
gen - generates java files
genClean - removes all generated files and their class files
-->
<project name="Java1.4Frontend" default="build" basedir=".">
<project name="XML Schema compiler" default="build" basedir=".">
<!-- "package" is the directory where generated files will be stored -->
<property name="package" value="AST"/>
......@@ -78,13 +78,13 @@
</delete>
</target>
<!-- <target name="jar" depends="build"> -->
<!-- <jar destfile="PrettyPrint.jar" basedir="." includes="**/*.class" excludes="test/**"> -->
<!-- <manifest> -->
<!-- <attribute name="Main-Class" value="JavaPrettyPrinter"/> -->
<!-- </manifest> -->
<!-- </jar> -->
<!-- </target> -->
<target name="jar" depends="build">
<jar destfile="SchemaCompile.jar" basedir="." includes="**/*.class" excludes="x3d/**">
<manifest>
<attribute name="Main-Class" value="GenCompiler"/>
</manifest>
</jar>
</target>
<!-- remove generated source files and their .class files -->
<target name="cleanGen">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment