You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
641 B
20 lines
641 B
<project name="create-data-analytics-capps" default="zip" basedir=".">
|
|
|
|
<property name="project-name" value="${ant.project.name}"/>
|
|
<property name="target-dir" value="target/carbonapps"/>
|
|
<property name="src-dir" value="src/main/resources/carbonapps"/>
|
|
|
|
<property name="location_dir" value="locationTraker"/>
|
|
|
|
<target name="clean">
|
|
<delete dir="${target-dir}" />
|
|
</target>
|
|
|
|
<target name="zip" depends="clean">
|
|
<mkdir dir="${target-dir}"/>
|
|
<zip destfile="${target-dir}/${location_dir}.car">
|
|
<zipfileset dir="${src-dir}/${location_dir}"/>
|
|
</zip>
|
|
</target>
|
|
</project>
|