sanders 02/04/10 18:53:15
Modified: proposal/vindico/src/java/org/apache/alexandria/om Cvs.java
Log:
Now both checkout and update work.
Update was not doing anything, and checkout was not
checking out by module name, so xerces2 was stomping
on xerces.
Revision Changes Path
1.7 +7 -7
jakarta-alexandria/proposal/vindico/src/java/org/apache/alexandria/om/Cvs.java
Index: Cvs.java
===================================================================
RCS file:
/home/cvs/jakarta-alexandria/proposal/vindico/src/java/org/apache/alexandria/om/Cvs.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Cvs.java 2 Feb 2002 02:21:46 -0000 1.6
+++ Cvs.java 11 Apr 2002 01:53:15 -0000 1.7
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-alexandria/proposal/vindico/src/java/org/apache/alexandria/om/Cvs.java,v
1.6 2002/02/02 02:21:46 sanders Exp $
- * $Revision: 1.6 $
- * $Date: 2002/02/02 02:21:46 $
+ * $Header:
/home/cvs/jakarta-alexandria/proposal/vindico/src/java/org/apache/alexandria/om/Cvs.java,v
1.7 2002/04/11 01:53:15 sanders Exp $
+ * $Revision: 1.7 $
+ * $Date: 2002/04/11 01:53:15 $
*
* ====================================================================
*
@@ -29,7 +29,7 @@
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
- * 4. The names "The Jakarta Project", "Commons", and "Apache Software
+ * 4. The names "The Jakarta Project", "Alexandria", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact [EMAIL PROTECTED]
@@ -68,7 +68,7 @@
* Cvs provides ...
*
* @author <a href="mailto:[EMAIL PROTECTED]">Scott Sanders</a>
- * @version $Revision: 1.6 $ $Date: 2002/02/02 02:21:46 $
+ * @version $Revision: 1.7 $ $Date: 2002/04/11 01:53:15 $
*/
public class Cvs {
@@ -164,7 +164,7 @@
helper.attribute("command", "update -dPA");
helper.attribute("cvsRoot", repo.getCvsRoot());
helper.attribute("dest", "${project.cvs.dir}");
- helper.attribute("package", getModule());
+// helper.attribute("package", getModule());
helper.attribute("quiet", "true");
if (tag != null) {
helper.attribute("tag", tag);
@@ -175,7 +175,7 @@
helper.attribute("name", "do-not-call-cvs-checkout");
helper.attribute("unless", "cvs.already.checked.out");
helper.element("target");
- helper.attribute("command", "checkout");
+ helper.attribute("command", "checkout -d ${project.module.parent}");
helper.attribute("cvsRoot", repo.getCvsRoot());
helper.attribute("dest", "${cvs.dir}");
helper.attribute("package", getModule());
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>