mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
20 lines
657 B
XML
20 lines
657 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<project name="create-sample-sensor-capps" default="zip" basedir=".">
|
||
|
|
|
||
|
|
<property name="project-name" value="${ant.project.name}"/>
|
||
|
|
<property name="target-dir" value="../org.wso2.carbon.device.mgt.iot.currentsensor.feature/src/main/resources/carbonapps"/>
|
||
|
|
|
||
|
|
<property name="Current_dir" value="Current"/>
|
||
|
|
|
||
|
|
<target name="clean">
|
||
|
|
<delete dir="${target-dir}" />
|
||
|
|
</target>
|
||
|
|
|
||
|
|
<target name="zip" depends="clean">
|
||
|
|
<mkdir dir="${target-dir}"/>
|
||
|
|
<zip destfile="${target-dir}/${Current_dir}.car">
|
||
|
|
<zipfileset dir="${Current_dir}"/>
|
||
|
|
</zip>
|
||
|
|
</target>
|
||
|
|
</project>
|