|
From: Michael R. <mr...@us...> - 2002-01-10 23:57:36
|
Update of /cvsroot/openorb/PropertyService/src
In directory usw-pr-cvs1:/tmp/cvs-serv13258/src
Modified Files:
build.xml
Log Message:
main jar was overwritten by examples jar
build.sh and test.sh, bugs fixed
Index: build.xml
===================================================================
RCS file: /cvsroot/openorb/PropertyService/src/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- build.xml 2002/01/10 19:12:33 1.2
+++ build.xml 2002/01/10 23:57:33 1.3
@@ -113,9 +113,9 @@
destdir="${build}/test"
classpath="${classpath}" debug="on" />
- <delete file="${dist}/${property-test-jar}" />
+ <delete file="${dist}/${property-tests-jar}" />
- <jar jarfile="${dist}/${property-test-jar}"
+ <jar jarfile="${dist}/${property-tests-jar}"
basedir="${build}/test" />
</target>
@@ -161,8 +161,8 @@
</target>
<target name="jar-all" depends="jar,examples,test" >
- <delete file="${dist}/${property-main-jar}" />
- <jar jarfile="${dist}/${property-main-jar}"
+ <delete file="${dist}/${property-examples-jar}" />
+ <jar jarfile="${dist}/${property-examples-jar}"
basedir="${build}/examples" />
@@ -249,8 +249,8 @@
tofile="${bin}/lib/${property-main-jar}" />
<copy file="${dist}/${property-examples-jar}"
tofile="${bin}/lib/${property-examples-jar}" />
- <copy file="${dist}/${property-test-jar}"
- tofile="${bin}/lib/${property-test-jar}" />
+ <copy file="${dist}/${property-tests-jar}"
+ tofile="${bin}/lib/${property-tests-jar}" />
<copy file="${dist}/PropertyService.pdf" tofile="${bin}/doc/PropertyService.pdf" />
<copy todir="${bin}/idl" >
<fileset dir="${idl}">
|