You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2016/05/28 21:02:05 UTC

svn commit: r1745940 - /maven/shared/trunk/maven-shared-utils/pom.xml

Author: khmarbaise
Date: Sat May 28 21:02:05 2016
New Revision: 1745940

URL: http://svn.apache.org/viewvc?rev=1745940&view=rev
Log:
[MSHARED-537] Removing plugin declaration which is handled by the parent
 o Removed maven-checkstyle-plugin definition cause it's handled
   by the parent.

Modified:
    maven/shared/trunk/maven-shared-utils/pom.xml

Modified: maven/shared/trunk/maven-shared-utils/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-utils/pom.xml?rev=1745940&r1=1745939&r2=1745940&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-utils/pom.xml (original)
+++ maven/shared/trunk/maven-shared-utils/pom.xml Sat May 28 21:02:05 2016
@@ -110,14 +110,6 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <!--
-          ! After a new parent (version 22) has been released this version can be removed.
-        -->
-        <version>2.15</version>
-      </plugin>
-      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
         <configuration>
@@ -137,21 +129,4 @@
     </plugins>
   </build>
 
-  <profiles>
-    <profile>
-      <id>reporting</id>
-      <reporting>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-checkstyle-plugin</artifactId>
-            <!--
-              ! After a new parent (version 22) has been released this version can be removed.
-            -->
-            <version>2.15</version>
-          </plugin>
-        </plugins>
-      </reporting>
-    </profile>
-  </profiles>
 </project>