forked from SaiDevOpsFaculty/SampleWebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a00ab9
commit 3612428
Showing
6 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<project name="SampleBuild" default="war" basedir="."> | ||
<path id="compile.classpath"> | ||
<fileset dir="WebContent/WEB-INF/lib"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
</path> | ||
<target name="init"> | ||
<mkdir dir="build/classes"/> | ||
<mkdir dir="dist"/> | ||
</target> | ||
<target name="compile" depends="init"> | ||
<javac srcdir="src" debug="true" destdir="build/classes"> | ||
<classpath refid="compile.classpath"/> | ||
</javac> | ||
</target> | ||
<target name="war" depends="compile"> | ||
<war webxml="WebContent/WEB-INF/web.xml" destfile="dist/SampleWebApp.war"> | ||
<fileset dir="WebContent"/> | ||
<lib dir="WebContent/WEB-INF/lib"/> | ||
<classes dir="build/classes"/> | ||
</war> | ||
</target> | ||
</project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters