You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/08/03 21:40:03 UTC

svn commit: r1153623 - /maven/pom/trunk/maven/pom.xml

Author: hboutemy
Date: Wed Aug  3 19:40:03 2011
New Revision: 1153623

URL: http://svn.apache.org/viewvc?rev=1153623&view=rev
Log:
removed attach-descriptor configuration for Maven 3 since it is inherited

Modified:
    maven/pom/trunk/maven/pom.xml

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=1153623&r1=1153622&r2=1153623&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Wed Aug  3 19:40:03 2011
@@ -854,31 +854,5 @@ under the License.
         </plugins>
       </reporting>
     </profile>
-    <profile>
-      <id>maven-3</id>
-      <activation>
-        <file>
-          <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
-          <exists>${basedir}</exists>
-        </file>
-      </activation>
-      <build>
-       <!-- we need to attach the site descriptor for this pom -->
-        <plugins>
-          <plugin>
-            <artifactId>maven-site-plugin</artifactId>
-            <inherited>false</inherited>
-            <executions>
-              <execution>
-                <id>attach-descriptor</id>
-                <goals>
-                  <goal>attach-descriptor</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>