Fixing accumulative jars problem in build
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
<move file="SBusJavaFacade.jar" todir="bin/"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="jar">
|
||||
<target name="build" depends="clean, jar">
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
<move file="SCommon.jar" todir="bin/" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="jar">
|
||||
<target name="build" depends="clean, jar">
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -51,6 +51,6 @@
|
||||
<move file="SDaemon.jar" todir="bin/" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="jar">
|
||||
<target name="build" depends="clean, jar">
|
||||
</target>
|
||||
</project>
|
||||
|
||||
@@ -51,6 +51,6 @@
|
||||
<echo message="Some junk content" file="bin/junk.txt" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="jar,exe,text">
|
||||
<target name="build" depends="clean,jar,exe,text">
|
||||
</target>
|
||||
</project>
|
||||
|
||||
@@ -51,6 +51,6 @@
|
||||
<echo message="Some content to copy" file="bin/source.txt" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="jar,exe,text">
|
||||
<target name="build" depends="clean, jar,exe,text">
|
||||
</target>
|
||||
</project>
|
||||
|
||||
@@ -41,6 +41,6 @@
|
||||
<delete dir="bin" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="common, text, testmetadatastorlet"/>
|
||||
<target name="build" depends="clean, common, text, testmetadatastorlet"/>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -37,6 +37,6 @@
|
||||
<delete dir="bin" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="common, test"/>
|
||||
<target name="build" depends="clean, common, test"/>
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user