[jboss-svn-commits] JBoss Common SVN: r2290 - common-core/trunk and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Mar 15 16:20:56 EDT 2007


Author: pgier
Date: 2007-03-15 16:20:56 -0400 (Thu, 15 Mar 2007)
New Revision: 2290

Modified:
   build/trunk/pom.xml
   common-core/trunk/pom.xml
   common-logging-jdk/trunk/pom.xml
   common-logging-log4j/trunk/pom.xml
   common-logging-spi/trunk/pom.xml
Log:
Moved tag base from pom property to release plugin configuration.
Added jboss-retro-maven-plugin configuration.

Modified: build/trunk/pom.xml
===================================================================
--- build/trunk/pom.xml	2007-03-08 21:14:18 UTC (rev 2289)
+++ build/trunk/pom.xml	2007-03-15 20:20:56 UTC (rev 2290)
@@ -36,8 +36,28 @@
     <plugins>
       <plugin>
         <groupId>jboss.maven-plugins</groupId>
+        <artifactId>jboss-retro-maven-plugin</artifactId>
+        <version>0.5-beta</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>retro-compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <!-- The tagBase property is needed during the release process so that the maven release plugin
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/common/build/tags</tagBase>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>jboss.maven-plugins</groupId>
         <artifactId>jboss-deploy-maven-plugin</artifactId>
-        <version>1.0</version>
+        <version>1.1-beta</version>
         <executions>
           <execution>
             <goals>
@@ -47,7 +67,7 @@
         </executions>
         <configuration>
           <!-- In order to use this setting jboss.repository.root must be set on the command line or in
-            settings.xml.  More information can be found here: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossBuildMaven -->
+          settings.xml.  More information can be found here: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossBuildMaven -->
           <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
         </configuration>
       </plugin>
@@ -97,9 +117,4 @@
       <url>file://${maven.cvs.root}</url>
     </repository>
   </distributionManagement>
-  <properties>
-    <!-- The tagBase property is needed during the release process so that the maven release plugin
-      will create the release tag in the appropriate location. -->
-    <tagBase>https://svn.jboss.org/repos/common/build/tags</tagBase>
-  </properties>
 </project>

Modified: common-core/trunk/pom.xml
===================================================================
--- common-core/trunk/pom.xml	2007-03-08 21:14:18 UTC (rev 2289)
+++ common-core/trunk/pom.xml	2007-03-15 20:20:56 UTC (rev 2290)
@@ -15,6 +15,18 @@
   <scm>
     <connection>scm:svn:https://svn.jboss.org/repos/common/common-core/trunk/</connection>
   </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <!-- The tagBase property is needed during the release process so that the maven release plugin
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/common/common-core/tags</tagBase>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
   <dependencies>
     <dependency>
       <groupId>apache-xerces</groupId>
@@ -56,9 +68,4 @@
       <scope>test</scope>
     </dependency>
   </dependencies>  
-  <properties>
-    <!-- The tagBase property is needed during the release process so that the maven release plugin
-      will create the release tag in the appropriate location. -->
-    <tagBase>https://svn.jboss.org/repos/common/common-core/tags</tagBase>
-  </properties>
 </project>

Modified: common-logging-jdk/trunk/pom.xml
===================================================================
--- common-logging-jdk/trunk/pom.xml	2007-03-08 21:14:18 UTC (rev 2289)
+++ common-logging-jdk/trunk/pom.xml	2007-03-15 20:20:56 UTC (rev 2290)
@@ -15,6 +15,18 @@
   <scm>
     <connection>scm:svn:https://svn.jboss.org/repos/common/common-logging-jdk/trunk/</connection>
   </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <!-- The tagBase property is needed during the release process so that the maven release plugin
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/common/common-logging-jdk/tags</tagBase>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
   <repositories>
     <repository>
       <id>jboss</id>
@@ -38,9 +50,4 @@
       <version>2.0.3.GA</version>
     </dependency>
   </dependencies>  
-  <properties>
-    <!-- The tagBase property is needed during the release process so that the maven release plugin
-      will create the release tag in the appropriate location. -->
-    <tagBase>https://svn.jboss.org/repos/common/common-logging-jdk/tags</tagBase>
-  </properties>
 </project>

Modified: common-logging-log4j/trunk/pom.xml
===================================================================
--- common-logging-log4j/trunk/pom.xml	2007-03-08 21:14:18 UTC (rev 2289)
+++ common-logging-log4j/trunk/pom.xml	2007-03-15 20:20:56 UTC (rev 2290)
@@ -15,6 +15,18 @@
   <scm>
     <connection>scm:svn:https://svn.jboss.org/repos/common/common-logging-log4j/trunk/</connection>
   </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <!-- The tagBase property is needed during the release process so that the maven release plugin
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/common/common-logging-log4j/tags</tagBase>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
   <dependencies>
     <dependency>
       <groupId>jboss</groupId>
@@ -34,9 +46,4 @@
       <scope>compile</scope>
     </dependency>    
   </dependencies>  
-  <properties>
-    <!-- The tagBase property is needed during the release process so that the maven release plugin
-      will create the release tag in the appropriate location. -->
-    <tagBase>https://svn.jboss.org/repos/common/common-logging-log4j/tags</tagBase>
-  </properties>
 </project>

Modified: common-logging-spi/trunk/pom.xml
===================================================================
--- common-logging-spi/trunk/pom.xml	2007-03-08 21:14:18 UTC (rev 2289)
+++ common-logging-spi/trunk/pom.xml	2007-03-15 20:20:56 UTC (rev 2290)
@@ -15,9 +15,16 @@
   <scm>
     <connection>scm:svn:https://svn.jboss.org/repos/common/common-logging-spi/trunk/</connection>
   </scm>
-  <properties>
-    <!-- The tagBase property is needed during the release process so that the maven release plugin
-      will create the release tag in the appropriate location. -->
-    <tagBase>https://svn.jboss.org/repos/common/common-logging-spi/tags</tagBase>
-  </properties>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <!-- The tagBase property is needed during the release process so that the maven release plugin
+            will create the release tag in the appropriate location. -->
+          <tagBase>https://svn.jboss.org/repos/common/common-logging-spi/tags</tagBase>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>




More information about the jboss-svn-commits mailing list