You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2009/08/24 23:54:01 UTC

svn commit: r807397 - in /maven/release/trunk: pom.xml src/main/assembly/

Author: olamy
Date: Mon Aug 24 21:54:00 2009
New Revision: 807397

URL: http://svn.apache.org/viewvc?rev=807397&view=rev
Log:
upgrade maven-parent reference to take advantage of new source-release configuration.

Removed:
    maven/release/trunk/src/main/assembly/
Modified:
    maven/release/trunk/pom.xml

Modified: maven/release/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/release/trunk/pom.xml?rev=807397&r1=807396&r2=807397&view=diff
==============================================================================
--- maven/release/trunk/pom.xml (original)
+++ maven/release/trunk/pom.xml Mon Aug 24 21:54:00 2009
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-parent</artifactId>
-    <version>11</version>
+    <version>13</version>
     <relativePath>../pom/maven/pom.xml</relativePath>
   </parent>
 
@@ -153,35 +153,4 @@
     </dependencies>
   </dependencyManagement>
   
-  <profiles>
-    <profile>
-      <id>release</id>
-      <build>
-        <plugins>
-          <plugin>
-            <!-- Using this plugin configuration to produce a buildable project source distro,
-                 per the discussion on members@ASF regarding what constitutes a valid release.
-            -->
-            <artifactId>maven-assembly-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>make-project-src-distro</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>single</goal>
-                </goals>
-                <configuration>
-                  <descriptors>
-                   <descriptor>src/main/assembly/source-release.xml</descriptor>
-                  </descriptors>
-                  <tarLongFileMode>gnu</tarLongFileMode>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>    
-  </profiles>  
-
 </project>