Fixing accumulative jars problem in build

This commit is contained in:
eranr
2015-06-16 16:37:25 +03:00
parent 36e04ead5c
commit c11010f4ba
7 changed files with 7 additions and 7 deletions

View File

@@ -53,7 +53,7 @@
<move file="SBusJavaFacade.jar" todir="bin/"/> <move file="SBusJavaFacade.jar" todir="bin/"/>
</target> </target>
<target name="build" depends="jar"> <target name="build" depends="clean, jar">
</target> </target>
</project> </project>

View File

@@ -50,7 +50,7 @@
<move file="SCommon.jar" todir="bin/" /> <move file="SCommon.jar" todir="bin/" />
</target> </target>
<target name="build" depends="jar"> <target name="build" depends="clean, jar">
</target> </target>
</project> </project>

View File

@@ -51,6 +51,6 @@
<move file="SDaemon.jar" todir="bin/" /> <move file="SDaemon.jar" todir="bin/" />
</target> </target>
<target name="build" depends="jar"> <target name="build" depends="clean, jar">
</target> </target>
</project> </project>

View File

@@ -51,6 +51,6 @@
<echo message="Some junk content" file="bin/junk.txt" /> <echo message="Some junk content" file="bin/junk.txt" />
</target> </target>
<target name="build" depends="jar,exe,text"> <target name="build" depends="clean,jar,exe,text">
</target> </target>
</project> </project>

View File

@@ -51,6 +51,6 @@
<echo message="Some content to copy" file="bin/source.txt" /> <echo message="Some content to copy" file="bin/source.txt" />
</target> </target>
<target name="build" depends="jar,exe,text"> <target name="build" depends="clean, jar,exe,text">
</target> </target>
</project> </project>

View File

@@ -41,6 +41,6 @@
<delete dir="bin" /> <delete dir="bin" />
</target> </target>
<target name="build" depends="common, text, testmetadatastorlet"/> <target name="build" depends="clean, common, text, testmetadatastorlet"/>
</project> </project>

View File

@@ -37,6 +37,6 @@
<delete dir="bin" /> <delete dir="bin" />
</target> </target>
<target name="build" depends="common, test"/> <target name="build" depends="clean, common, test"/>
</project> </project>