-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
16 lines (14 loc) · 718 Bytes
/
build.xml
File metadata and controls
16 lines (14 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="" default="create-zip" name="PreprocessVelocityTranscriptome">
<property name="dirOffset" value="../common_module_code" />
<import file="${dirOffset}/commontargets.xml" />
<target name="create-zip" depends="init">
<antcall target="prezip"/>
<zip destfile="${dest.dir}/${ant.project.name}.zip" whenempty="fail" defaultexcludes="true">
<fileset dir="." includes="manifest, Dockerfile, LICENSE, *.json"/>
<!-- if you are iterating in the module integrator you will need to include the source files in the module zip -->
<!-- zipfileset dir="src" includes="*.py"/-->
</zip>
<antcall target="postzip"/>
</target>
</project>