Skip to content

Commit

Permalink
Add "compile" target
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Jun 22, 2024
1 parent 8f76edf commit cc83d83
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/tutorial/src/personalblog-demo/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,21 @@
<delete dir="bin"/>
</target>

<target name="compile"
description="Compile without typechecking"
depends="clean">
<mkdir dir="bin"/>
<javac fork="true" srcdir="src" destdir="bin" includeantruntime="false">
<classpath>
<pathelement location="${checker-framework}/checker/dist/checker.jar"/>
<pathelement location="lib/personalblog.jar"/>
<pathelement location="lib/hibernate2.jar"/>
<pathelement location="lib/commons-logging.jar"/>
<pathelement location="lib/struts.jar"/>
<pathelement location="lib/servlet-api.jar"/>
<pathelement location="lib/commons-lang.jar"/>
</classpath>
</javac>
</target>

</project>

0 comments on commit cc83d83

Please sign in to comment.