Skip to content

Commit a735d9f

Browse files
modified
1 parent f861343 commit a735d9f

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

build.xml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<project name="SampleBuild" default="compile" basedir=".">
2+
<path id="compile.classpath">
3+
<fileset dir="WebContent/WEB-INF/lib">
4+
<include name="*.jar"/>
5+
</fileset>
6+
</path>
7+
<target name="init">
8+
<mkdir dir="build/classes"/>
9+
<mkdir dir="dist"/>
10+
</target>
11+
<target name="compile" depends="init">
12+
<javac srcdir="src" debug="true" destdir="build/classes">
13+
<classpath refid="compile.classpath"/>
14+
</javac>
15+
</target>
16+
</project>
118 Bytes
Binary file not shown.
1.52 KB
Binary file not shown.

build/classes/math/Calculator.class

729 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)