mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
18 lines
467 B
XML
18 lines
467 B
XML
<project name="IoTServerSamples" basedir="" default="deploy">
|
|
<macrodef name="iterate">
|
|
<attribute name="target"/>
|
|
<sequential>
|
|
<subant target="@{target}">
|
|
<fileset dir="" includes="*/build.xml"/>
|
|
</subant>
|
|
</sequential>
|
|
</macrodef>
|
|
|
|
<target name="deploy">
|
|
<iterate target="deploy"/>
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<iterate target="clean"/>
|
|
</target>
|
|
</project> |