You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0"?>
-
- <project name="abstractcvstask-test" basedir="../../../../"
- default="all">
-
- <property name="file" value="ant.properties.sample" />
- <target name="all">
- <cvs failonerror="true" command="status ${file}"/>
- <cvs failonerror="true">
- <commandline>
- <argument value="up"/>
- <argument value="-r"/>
- <argument value="1.1"/>
- <argument value="${file}"/>
- </commandline>
- </cvs>
- <cvs failonerror="true" command="status ${file}"/>
- <cvs failonerror="true">
- <commandline>
- <argument line="up -r HEAD ${file}" />
- </commandline>
- </cvs>
- <cvs failonerror="true" command="status ${file}"/>
- </target>
-
- <target name="package-attribute">
- <mkdir dir="tmpdir" />
- <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
- package="ant/build.xml"
- dest="tmpdir"
- quiet="true" />
- </target>
-
- <target name="tag-attribute">
- <mkdir dir="tmpdir" />
- <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
- package="ant/build.xml"
- dest="tmpdir"
- quiet="true"
- tag="ANT_141" />
- <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
- package="ant/build.xml"
- dest="tmpdir"
- command="status"/>
- </target>
-
- <target name="cleanup">
- <delete dir="tmpdir" />
- </target>
- </project>
|