From 753a6c60f47f3ac4f270005b65e9d6481de8eb68 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:00:02 -0700 Subject: Adding maven and ant source trees Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445 Signed-off-by: Ashlee Young --- .../apache-ant-1.9.6/manual/Tasks/cvsversion.html | 108 +++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/cvsversion.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/cvsversion.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/cvsversion.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/cvsversion.html new file mode 100644 index 00000000..09e7cee1 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/cvsversion.html @@ -0,0 +1,108 @@ + + + + + + + CVSVersion Task + + + + +

CvsVersion

+

Description

+

+This task allows to retrieve a CVS client and server version. + Since Apache Ant 1.6.1. +

+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
Attributes from parent Cvs task which are meaningful here
cvsRootthe CVSROOT variable.No
cvsRshthe CVS_RSH variable.No
destdirectory containing the checked out version of the projectNo, default is project's basedir.
packagethe package/module to check out.No
portPort used by CVS to communicate with the server.No, default port 2401.
passfilePassword file to read passwords from.No, default file ~/.cvspass.
failonerrorStop the build process if the command exits with a + return code other than 0. Defaults to falseNo
Specific attributes
clientversionpropertyName of a property where the cvsclient version + should be storedNo
serverversionpropertyName of a property where the cvs server version + should be storedNo
+

Examples

+
  <cvsversion cvsRoot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
+       passfile="/home/myself/.cvspass"
+       serverversionproperty="apachecvsversion"
+       clientversionproperty="localcvsversion"
+  />
+

finds out the cvs client and server versions and stores the versions in the +properties called apachecvsversion and localcvsversion

+ + + + + + -- cgit 1.2.3-korg