You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2011/09/07 13:39:32 UTC

svn commit: r1166129 - /maven/maven-3/trunk/apache-maven/pom.xml

Author: bentmann
Date: Wed Sep  7 11:39:32 2011
New Revision: 1166129

URL: http://svn.apache.org/viewvc?rev=1166129&view=rev
Log:
o Cleaned up POM

Modified:
    maven/maven-3/trunk/apache-maven/pom.xml

Modified: maven/maven-3/trunk/apache-maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/maven-3/trunk/apache-maven/pom.xml?rev=1166129&r1=1166128&r2=1166129&view=diff
==============================================================================
--- maven/maven-3/trunk/apache-maven/pom.xml (original)
+++ maven/maven-3/trunk/apache-maven/pom.xml Wed Sep  7 11:39:32 2011
@@ -31,7 +31,7 @@
   <description>Module to build the Maven distribution, source and binary, in zip and tar.gz formats.</description>
 
   <properties>
-    <distributionName>apache-maven</distributionName>
+    <distributionFileName>${distributionId}-${project.version}</distributionFileName>
   </properties>
 
   <dependencies>
@@ -71,7 +71,7 @@
   </dependencies>
 
   <build>
-    <finalName>${distributionId}-${project.version}</finalName>
+    <finalName>${distributionFileName}</finalName>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -127,23 +127,6 @@
   </build>
 
   <profiles>
-     <profile>
-      <id>standard</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <forkMode>once</forkMode>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
     <profile>
       <id>apache-release</id>
       <build>
@@ -169,21 +152,5 @@
         </plugins>
       </build>
     </profile>
-    <profile>
-      <!-- Single Test -->
-      <id>st</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <includes>
-                <include>**/MavenEmbedderTest.java</include>
-              </includes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>