Author: dion
Date: Sun Nov 27 03:57:37 2005
New Revision: 349215
URL: http://svn.apache.org/viewcvs?rev=349215&view=rev
Log:
Use groupId/artifactId consistently instead of simply id
Modified:
jakarta/commons/proper/jelly/trunk/jelly-tags/betwixt/project.xml
jakarta/commons/proper/jelly/trunk/jelly-tags/bsf/project.xml
jakarta/commons/proper/jelly/trunk/jelly-tags/define/project.xml
jakarta/commons/proper/jelly/trunk/jelly-tags/dynabean/project.xml
Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/betwixt/project.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/betwixt/project.xml?rev=349215&r1=349214&r2=349215&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/betwixt/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/betwixt/project.xml Sun Nov
27 03:57:37 2005
@@ -16,7 +16,7 @@
-->
<project>
<extend>${basedir}/../tag-project.xml</extend>
- <id>commons-jelly-tags-betwixt</id>
+ <artifactId>commons-jelly-tags-betwixt</artifactId>
<name>commons-jelly-tags-betwixt</name>
<currentVersion>1.1-SNAPSHOT</currentVersion>
<package>org.apache.commons.jelly.tags.betwixt</package>
@@ -38,13 +38,15 @@
<!-- START for compilation -->
<dependency>
- <id>commons-betwixt</id>
+ <groupId>commons-betwixt</groupId>
+ <artifactId>commons-betwixt</artifactId>
<version>0.6</version>
<url>http://jakarta.apache.org/commons/betwixt/</url>
</dependency>
<dependency>
- <id>commons-digester</id>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
<version>1.6</version>
<url>http://jakarta.apache.org/commons/digester/</url>
</dependency>
@@ -58,6 +60,9 @@
<artifactId>commons-jelly-tags-log</artifactId>
<version>1.0</version>
<url>http://jakarta.apache.org/commons/jelly/tags/log/</url>
+ <properties>
+ <scope>test</scope>
+ </properties>
</dependency>
<dependency>
@@ -65,6 +70,9 @@
<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>
<!-- END for test -->
Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/bsf/project.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/bsf/project.xml?rev=349215&r1=349214&r2=349215&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/bsf/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/bsf/project.xml Sun Nov 27
03:57:37 2005
@@ -16,7 +16,7 @@
-->
<project>
<extend>${basedir}/../tag-project.xml</extend>
- <id>commons-jelly-tags-bsf</id>
+ <artifactId>commons-jelly-tags-bsf</artifactId>
<name>commons-jelly-tags-bsf</name>
<currentVersion>1.0.1-SNAPSHOT</currentVersion>
<package>org.apache.commons.jelly.tags.bsf</package>
@@ -40,7 +40,8 @@
<!-- START for compilation -->
<dependency>
- <id>bsf</id>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
<version>2.3.0</version>
<url>http://jakarta.apache.org/bsf</url>
<properties>
Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/define/project.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/define/project.xml?rev=349215&r1=349214&r2=349215&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/define/project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/define/project.xml Sun Nov 27
03:57:37 2005
@@ -16,9 +16,9 @@
-->
<project>
<extend>${basedir}/../tag-project.xml</extend>
- <id>commons-jelly-tags-define</id>
+ <artifactId>commons-jelly-tags-define</artifactId>
<name>commons-jelly-tags-define</name>
- <currentVersion>1.0</currentVersion>
+ <currentVersion>1.0.1-SNAPSHOT</currentVersion>
<package>org.apache.commons.jelly.tags.define</package>
@@ -44,6 +44,9 @@
<artifactId>commons-jelly-tags-dynabean</artifactId>
<version>1.0</version>
<url>http://jakarta.apache.org/commons/jelly/tags/dynabean/</url>
+ <properties>
+ <scope>test</scope>
+ </properties>
</dependency>
<dependency>
@@ -51,6 +54,9 @@
<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>
@@ -58,6 +64,9 @@
<artifactId>commons-jelly-tags-log</artifactId>
<version>1.0</version>
<url>http://jakarta.apache.org/commons/jelly/tags/log/</url>
+ <properties>
+ <scope>test</scope>
+ </properties>
</dependency>
<dependency>
@@ -65,6 +74,9 @@
<artifactId>commons-jelly-tags-xml</artifactId>
<version>1.0</version>
<url>http://jakarta.apache.org/commons/jelly/tags/xml/</url>
+ <properties>
+ <scope>test</scope>
+ </properties>
</dependency>
@@ -73,7 +85,8 @@
<!-- START for running demos -->
<dependency>
- <id>commons-cli</id>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
<version>1.0</version>
</dependency>
Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/dynabean/project.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/dynabean/project.xml?rev=349215&r1=349214&r2=349215&view=diff
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/dynabean/project.xml
(original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/dynabean/project.xml Sun Nov
27 03:57:37 2005
@@ -16,7 +16,7 @@
-->
<project>
<extend>${basedir}/../tag-project.xml</extend>
- <id>commons-jelly-tags-dynabean</id>
+ <artifactId>commons-jelly-tags-dynabean</artifactId>
<name>commons-jelly-tags-dynabean</name>
<currentVersion>1.0.1-SNAPSHOT</currentVersion>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]