You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2005/12/01 13:36:56 UTC

svn commit: r350240 - in /jakarta/commons/proper/jelly/trunk: jelly-tags/validate/project.xml jelly-tags/velocity/project.xml jelly-tags/xml/project.xml jelly-tags/xmlunit/project.xml parent-project.xml project.xml

Author: dion
Date: Thu Dec  1 04:36:47 2005
New Revision: 350240

URL: http://svn.apache.org/viewcvs?rev=350240&view=rev
Log:
Use groupId/artifactId consistently instead of simply id

Modified:
    jakarta/commons/proper/jelly/trunk/jelly-tags/validate/project.xml
    jakarta/commons/proper/jelly/trunk/jelly-tags/velocity/project.xml
    jakarta/commons/proper/jelly/trunk/jelly-tags/xml/project.xml
    jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/project.xml
    jakarta/commons/proper/jelly/trunk/parent-project.xml
    jakarta/commons/proper/jelly/trunk/project.xml

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/validate/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/validate/project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/validate/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/validate/project.xml Thu Dec  1 04:36:47 2005
@@ -18,7 +18,7 @@
 
 <project>
   <extend>${basedir}/../tag-project.xml</extend>
-  <id>commons-jelly-tags-validate</id>
+  <artifactId>commons-jelly-tags-validate</artifactId>
   <name>commons-jelly-tags-validate</name>
   <currentVersion>1.0.1-SNAPSHOT</currentVersion>
   <package>org.apache.commons.jelly.tags.validate</package>
@@ -43,11 +43,13 @@
       </properties>
     </dependency>
     <dependency>
-      <id>junit</id>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
       <version>3.8.1</version>
     </dependency>
     <dependency>
-      <id>msv</id>
+      <groupId>msv</groupId>
+      <artifactId>msv</artifactId>
       <version>20030807</version>
     </dependency>
     <!-- END for compilation -->
@@ -74,12 +76,16 @@
       <artifactId>commons-jelly-tags-junit</artifactId>
       <version>1.0</version>
       <url>http://jakarta.apache.org/commons/jelly/libs/junit/</url>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
     <!-- END for test -->
     <!-- START for running demos -->
 
     <dependency>
-      <id>commons-cli</id>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
       <version>1.0</version>
     </dependency>
     <!-- END for running demos -->

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/velocity/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/velocity/project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/velocity/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/velocity/project.xml Thu Dec  1 04:36:47 2005
@@ -16,9 +16,9 @@
 -->
 <project>
   <extend>${basedir}/../tag-project.xml</extend>
-  <id>commons-jelly-tags-velocity</id>
+  <artifactId>commons-jelly-tags-velocity</artifactId>
   <name>commons-jelly-tags-velocity</name>
-  <currentVersion>1.0</currentVersion>
+  <currentVersion>1.0.1-SNAPSHOT</currentVersion>
   
   <package>org.apache.commons.jelly.tags.velocity</package>
 
@@ -39,7 +39,8 @@
 
     <!-- START for compilation -->
     <dependency>
-      <id>velocity</id>
+      <groupId>velocity</groupId>
+      <artifactId>velocity</artifactId>
       <version>1.3</version>
       <url>http://jakarta.apache.org/velocity/</url>
       <properties>

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/xml/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/xml/project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/xml/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/xml/project.xml Thu Dec  1 04:36:47 2005
@@ -18,7 +18,7 @@
 
 <project>
   <extend>${basedir}/../tag-project.xml</extend>
-  <id>commons-jelly-tags-xml</id>
+  <artifactId>commons-jelly-tags-xml</artifactId>
   <name>commons-jelly-tags-xml</name>
   <currentVersion>1.2-SNAPSHOT</currentVersion>
   <package>org.apache.commons.jelly.tags.xml</package>
@@ -38,14 +38,16 @@
   </versions>
   <dependencies>
     <dependency>
-      <id>commons-jelly</id>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly</artifactId>
       <version>SNAPSHOT</version>
     </dependency>
     
     <!-- run time / in testing-->
 
     <dependency>
-      <id>xalan</id>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
       <version>2.3.1</version>
     </dependency>
     <dependency>
@@ -53,6 +55,9 @@
       <artifactId>commons-jelly-tags-junit</artifactId>
       <version>1.0</version>
       <url>http://jakarta.apache.org/commons/jelly/libs/junit/</url>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
   </dependencies>
 </project>

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/project.xml Thu Dec  1 04:36:47 2005
@@ -18,7 +18,7 @@
 
 <project>
   <extend>${basedir}/../tag-project.xml</extend>
-  <id>commons-jelly-tags-xmlunit</id>
+  <artifactId>commons-jelly-tags-xmlunit</artifactId>
   <name>commons-jelly-tags-xmlunit</name>
   <currentVersion>1.0.1-SNAPSHOT</currentVersion>
   <package>org.apache.commons.jelly.tags.xmlunit</package>
@@ -34,13 +34,15 @@
   <dependencies>
     <!-- START for compilation -->
     <dependency>
-      <id>xmlunit</id>
+      <groupId>xmlunit</groupId>
+      <artifactId>xmlunit</artifactId>
       <version>0.8</version>
     </dependency>
     <!-- for some reason I had to add this in or the 1.3.1 compiler barfed -->
 
     <dependency>
-      <id>junit</id>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
       <version>3.8.1</version>
     </dependency>
     <!-- END for compilation -->
@@ -51,16 +53,26 @@
       <artifactId>commons-jelly-tags-junit</artifactId>
       <version>1.0</version>
       <url>http://jakarta.apache.org/commons/jelly/tags/junit/</url>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
     <dependency>
       <groupId>commons-jelly</groupId>
       <artifactId>commons-jelly-tags-xml</artifactId>
       <version>1.0</version>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
     <dependency>
-      <id>xalan</id>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
       <version>2.3.1</version>
       <url>http://xml.apache.org/xalan-j/</url>
+      <properties>
+        <scope>test</scope>
+      </properties>
     </dependency>
     <!-- END for testing -->
 

Modified: jakarta/commons/proper/jelly/trunk/parent-project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/parent-project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/parent-project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/parent-project.xml Thu Dec  1 04:36:47 2005
@@ -28,17 +28,20 @@
     -->
     
     <dependency>
-      <id>commons-jexl</id>
+      <groupId>commons-jexl</groupId>
+      <artifactId>commons-jexl</artifactId>
       <version>1.0</version>
     </dependency>
     
     <dependency>
-      <id>xml-apis</id>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
       <version>1.0.b2</version>
     </dependency>
     
     <dependency>
-      <id>commons-beanutils</id>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
       <version>1.6</version>
       <properties>
         <gump.runtime>true</gump.runtime>
@@ -46,7 +49,8 @@
     </dependency>
     
     <dependency>
-      <id>commons-collections</id>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
       <version>2.1</version>
       <properties>
         <gump.runtime>true</gump.runtime>
@@ -54,7 +58,8 @@
     </dependency>
     
     <dependency>
-      <id>commons-logging</id>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
       <version>1.0.3</version>
       <properties>
         <gump.runtime>true</gump.runtime>
@@ -62,17 +67,20 @@
     </dependency>
     
     <dependency>
-      <id>dom4j</id>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
       <version>1.5.2</version>
     </dependency>
 
     <dependency>
-      <id>jaxen</id>
+      <groupId>jaxen</groupId>
+      <artifactId>jaxen</artifactId>
       <version>1.1-beta-4</version>
     </dependency>
 
     <dependency>
-      <id>xerces</id>
+      <groupId>xerces</groupId>
+      <artifactId>xerces</artifactId>
       <version>2.2.1</version>
       <properties>
         <gump.project>xml-xerces</gump.project>

Modified: jakarta/commons/proper/jelly/trunk/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/project.xml?rev=350240&r1=350239&r2=350240&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/project.xml Thu Dec  1 04:36:47 2005
@@ -310,7 +310,8 @@
     <!-- for servlet support -->
 
     <dependency>
-      <id>servletapi</id>
+      <groupId>servletapi</groupId>
+      <artifactId>servletapi</artifactId>
       <version>2.3</version>
       <properties>
         <gump.project>jakarta-servletapi-5-servlet</gump.project>
@@ -319,26 +320,30 @@
     <!-- for command line interface support -->
 
     <dependency>
-      <id>commons-cli</id>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
       <version>1.0</version>
     </dependency>
     <!-- this is brought in by the commons-cli dependency -->
 
     <dependency>
-      <id>commons-lang</id>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
       <version>2.0</version>
       <properties>
         <gump.runtime>true</gump.runtime>
       </properties>
     </dependency>
     <dependency>
-      <id>commons-discovery</id>
+      <groupId>commons-discovery</groupId>
+      <artifactId>commons-discovery</artifactId>
       <version>20030211.213356</version>
     </dependency>
     <!-- for the jelly startup scripts -->
 
     <dependency>
-      <id>forehead</id>
+      <groupId>forehead</groupId>
+      <artifactId>forehead</artifactId>
       <version>1.0-beta-5</version>
       <url>http://forehead.werken.com/</url>
     </dependency>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org