Author: fhanik Date: Sat Jul 1 16:34:50 2006 New Revision: 418520 URL: http://svn.apache.org/viewvc?rev=418520&view=rev Log: Changed build script to generate archived JARs with version so that maven repositories can use it
Modified: tomcat/container/tc5.5.x/modules/groupcom/VERSION tomcat/container/tc5.5.x/modules/groupcom/build/build.xml Modified: tomcat/container/tc5.5.x/modules/groupcom/VERSION URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/groupcom/VERSION?rev=418520&r1=418519&r2=418520&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/groupcom/VERSION (original) +++ tomcat/container/tc5.5.x/modules/groupcom/VERSION Sat Jul 1 16:34:50 2006 @@ -1,3 +1,7 @@ +0.9.4.2 + - Huge Performance improvements on the NIOReceiver + - revision 418518 + - worked out the build script to generate versioned jars 0.9.4.1 - fixed bug with the command being transferred but not deserialized 0.9.4.0 Modified: tomcat/container/tc5.5.x/modules/groupcom/build/build.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/groupcom/build/build.xml?rev=418520&r1=418519&r2=418520&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/groupcom/build/build.xml (original) +++ tomcat/container/tc5.5.x/modules/groupcom/build/build.xml Sat Jul 1 16:34:50 2006 @@ -3,6 +3,8 @@ <property file="${user.home}/build.properties"/> <property file="build/build.properties"/> <property file="build/build.properties.default"/> + + <property name="tribes.version" value="1.0-SNAPSHOT"/> <!--Independent build script for Tribes, to not require the entire Tomcat tree to build this module--> @@ -136,6 +138,8 @@ <include name="VERSION"/> </fileset> </jar> + <mkdir dir="${dist.path}/archive"/> + <copyfile src="${dist.path}/apache-tribes.jar" dest="${dist.path}/archive/tribes-${tribes.version}-sources.jar"/> <delete dir="${compile.path}"> <include name="**/*.java"/> </delete> @@ -145,10 +149,13 @@ <include name="VERSION"/> </fileset> </jar> + <copyfile src="${dist.path}/apache-tribes-bin.jar" dest="${dist.path}/archive/tribes-${tribes.version}.jar"/> + <jar destfile="${dist.path}/tribes-all.zip"> <fileset dir="${dist.path}"> <include name="apache-tribes.jar"/> <include name="apache-tribes-bin.jar"/> + <include name="archive/*.jar"/> </fileset> <fileset dir="${temp.path}"> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]