Fixing accumulative jars problem in build
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user