source: other-projects/trunk/gs3-release-maker/apache-ant-1.6.5/src/etc/testcases/taskdefs/abstractcvstask.xml@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 1.4 KB
Line 
1<?xml version="1.0"?>
2
3<project name="abstractcvstask-test" basedir="../../../../"
4 default="all">
5
6 <property name="file" value="ant.properties.sample" />
7 <target name="all">
8 <cvs failonerror="true" command="status ${file}"/>
9 <cvs failonerror="true">
10 <commandline>
11 <argument value="up"/>
12 <argument value="-r"/>
13 <argument value="1.1"/>
14 <argument value="${file}"/>
15 </commandline>
16 </cvs>
17 <cvs failonerror="true" command="status ${file}"/>
18 <cvs failonerror="true">
19 <commandline>
20 <argument line="up -r HEAD ${file}" />
21 </commandline>
22 </cvs>
23 <cvs failonerror="true" command="status ${file}"/>
24 </target>
25
26 <target name="package-attribute">
27 <mkdir dir="tmpdir" />
28 <cvs cvsroot=":pserver:[email protected]:/home/cvspublic"
29 package="ant/build.xml"
30 dest="tmpdir"
31 quiet="true" />
32 </target>
33
34 <target name="tag-attribute">
35 <mkdir dir="tmpdir" />
36 <cvs cvsroot=":pserver:[email protected]:/home/cvspublic"
37 package="ant/build.xml"
38 dest="tmpdir"
39 quiet="true"
40 tag="ANT_141" />
41 <cvs cvsroot=":pserver:[email protected]:/home/cvspublic"
42 package="ant/build.xml"
43 dest="tmpdir"
44 command="status"/>
45 </target>
46
47 <target name="cleanup">
48 <delete dir="tmpdir" />
49 </target>
50</project>
Note: See TracBrowser for help on using the repository browser.