jfarcand 2003/01/27 09:35:28 Modified: . build.xml build.properties.default Log: Add support for cvs tag when using the checkout target. Revision Changes Path 1.71 +2 -1 jakarta-tomcat-5/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- build.xml 23 Jan 2003 02:52:47 -0000 1.70 +++ build.xml 27 Jan 2003 17:35:28 -0000 1.71 @@ -1069,9 +1069,10 @@ <target name="cvsbuild" unless="exist" depends="testexist"> <!-- cvs checkout and ant dist + copy of jar file --> - <echo message="cvs co ${location} and ant dist in ${subdir}"/> + <echo message="cvs co ${location} -r ${cvstag} and ant dist in ${subdir}"/> <mkdir dir="${base.path}/tmp"/> <cvs cvsRoot="${cvsroot}" + tag="${cvstag}" package="${location}" dest="${base.path}/tmp" /> 1.59 +2 -2 jakarta-tomcat-5/build.properties.default Index: build.properties.default =================================================================== RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v retrieving revision 1.58 retrieving revision 1.59 diff -u -r1.58 -r1.59 --- build.properties.default 23 Jan 2003 02:51:27 -0000 1.58 +++ build.properties.default 27 Jan 2003 17:35:28 -0000 1.59 @@ -33,7 +33,7 @@ # ----- CVS root for the jakarta repositories ------ cvsroot=":pserver:[EMAIL PROTECTED]:/home/cvspublic" - +cvstag="" # ----- Default Base Path for Dependent Packages ----- #base.path=/usr/share/java
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>