Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
John Le Drew committed Nov 7, 2010
0 parents commit 52dc97c
Show file tree
Hide file tree
Showing 4 changed files with 459 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
.classpath
.project
.settings
test
23 changes: 23 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="jsbuilder" basedir="." default="build">

<property name="src.dir" value="src"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>

<target name="clean" description="Delete all generated files">
<delete dir="${build.dir}" failonerror="false"/>
</target>

<target name="compile" description="Compiles the Task">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}"/>
</target>

<target name="jar" description="JARs the Task" depends="compile">
<jar destfile="${build.dir}/${ant.project.name}.jar" basedir="${classes.dir}"/>
</target>

<target name="build" depends="clean,compile,jar" />

</project>
Binary file added lib/ant_deploy.jar
Binary file not shown.
Loading

0 comments on commit 52dc97c

Please sign in to comment.