-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
19 lines (17 loc) · 788 Bytes
/
build.xml
File metadata and controls
19 lines (17 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="" default="create-zip" name="Single.Cell.ssGSEA">
<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, paramgroups.json, LICENSE, Dockerfile"/>
<fileset dir="src/sc_ssGSEA" includes="*.R"/>
<fileset dir="src/sc_ssGSEA" includes="*.py"/>
<fileset dir="src/sc_ssGSEA" includes="*.sh"/>
<fileset dir="." includes="*.sh"/>
<fileset dir="." includes="*.py"/>
</zip>
<antcall target="postzip"/>
</target>
</project>