forked from rosado/clj-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
24 lines (19 loc) · 655 Bytes
/
build.xml
File metadata and controls
24 lines (19 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<project name="clojure-processing" default="jar">
<description>
Pack all rosado.processing sources into a JAR.
</description>
<!-- The JAR file to create. -->
<property name="jarfile" location="rosado.processing.jar"/>
<target name="clean"
description="Remove generated files and directories.">
<delete file="${jarfile}"/>
</target>
<target name="jar"
description="Create jar file.">
<jar jarfile="${jarfile}">
<fileset dir="." includes="CPL.TXT"/>
<fileset dir="src" includes="rosado/**/*.clj"/>
<fileset dir="src" includes="rosado/**/*.properties"/>
</jar>
</target>
</project>