[jboss-svn-commits] JBL Code SVN: r12783 - labs/jbossbuild/jboss-parent/trunk.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Jun 22 17:17:53 EDT 2007


Author: pgier
Date: 2007-06-22 17:17:53 -0400 (Fri, 22 Jun 2007)
New Revision: 12783

Modified:
   labs/jbossbuild/jboss-parent/trunk/pom.xml
Log:
Making the release plugin, jar, and compiler plugin inherited.

Modified: labs/jbossbuild/jboss-parent/trunk/pom.xml
===================================================================
--- labs/jbossbuild/jboss-parent/trunk/pom.xml	2007-06-22 15:58:30 UTC (rev 12782)
+++ labs/jbossbuild/jboss-parent/trunk/pom.xml	2007-06-22 21:17:53 UTC (rev 12783)
@@ -61,18 +61,20 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>        
         <artifactId>maven-release-plugin</artifactId>
-        <version>2.0-beta-5</version>          
+        <version>2.0-beta-6</version>          
         <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/labs/labs/jbossbuild/jboss-parent/tags/</tagBase>
+            -  will create the tag in the appropriate svn location. If the svn location is the default 
+            -  of "../tags" then we don't need to specify the tagBase. -->
+          <!--<tagBase>https://svn.jboss.org/repos/labs/labs/jbossbuild/jboss-parent/tags/</tagBase>-->
+          
           <!-- We don't want to use the default release profile because it creates javadoc jars for the repo.
             -  Since we include source jars in the repo, we don't need the javadoc jars. -->
           <useReleaseProfile>false</useReleaseProfile>
           <!-- The release plugin activates a custom profile called "release". -->
           <arguments>-Prelease</arguments>
         </configuration>
-        <inherited>false</inherited>
+        <inherited>true</inherited>
       </plugin>
       <!-- Define how we want compilation to take place.
         -  We accept most of the defaults but say that we want the
@@ -89,6 +91,7 @@
           <showWarnings>true</showWarnings>
           <optimize>true</optimize>
         </configuration>
+        <inherited>true</inherited>
       </plugin>
       <!-- define that we wish to create src jars -->
       <plugin>
@@ -120,6 +123,7 @@
             </manifestEntries>
           </archive>
         </configuration>
+        <inherited>true</inherited>
       </plugin>
     </plugins>
     <pluginManagement>




More information about the jboss-svn-commits mailing list