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 2013/06/02 20:49:04 UTC

svn commit: r1488762 - /maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml

Author: hboutemy
Date: Sun Jun  2 18:49:04 2013
New Revision: 1488762

URL: http://svn.apache.org/r1488762
Log:
use maven-parent

Modified:
    maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml

Modified: maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml?rev=1488762&r1=1488761&r2=1488762&view=diff
==============================================================================
--- maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml (original)
+++ maven/sandbox/trunk/dist-tools/dist-tool-plugin/pom.xml Sun Jun  2 18:49:04 2013
@@ -18,7 +18,14 @@
 ~ under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>maven-parent</artifactId>
+    <version>23</version>
+  </parent>
+
     <groupId>org.apache.maven.dist.tools</groupId>
     <artifactId>dist-tool-plugin</artifactId>
     <version>0.0.1-SNAPSHOT</version>
@@ -31,26 +38,22 @@
         <maven>3.0.4</maven>
     </prerequisites>
 
-    <licenses>
-        <license> 
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-        </license>
-    </licenses>
+    <properties>
+        <netbeans.checkstyle.format>true</netbeans.checkstyle.format> 
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <mvnversion>3.1-SNAPSHOT</mvnversion>
+    </properties>
 
     <dependencies>
         <dependency>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-plugin-api</artifactId>
             <version>${mvnversion}</version>
-            
         </dependency>     
         <dependency>
             <groupId>org.apache.maven.plugin-tools</groupId>
             <artifactId>maven-plugin-annotations</artifactId>
-            <version>3.2</version>
             <scope>provided</scope>
-            
         </dependency> 
         <dependency>
             <groupId>org.jsoup</groupId>
@@ -61,13 +64,11 @@
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-core</artifactId>
             <version>${mvnversion}</version>
-            <type>jar</type>
         </dependency>
         <dependency>
             <groupId>org.apache.maven.reporting</groupId>
             <artifactId>maven-reporting-impl</artifactId>
             <version>2.2</version>
-            <type>jar</type>
             <exclusions>
                 <exclusion>
                     <artifactId>maven-artifact</artifactId>
@@ -126,7 +127,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-plugin-plugin</artifactId>
-                <version>3.2</version>
                 <configuration>
                     <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
@@ -180,12 +180,6 @@
         </plugins>
     </build>
 
-    <properties>
-        <netbeans.checkstyle.format>true</netbeans.checkstyle.format> 
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <mvnversion>3.1-SNAPSHOT</mvnversion>
-    </properties>
-
     <reporting>
         <plugins>
       
@@ -211,15 +205,6 @@
                 </reportSets>
             </plugin>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.10</version>
-                <configuration>
-                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
-                    <configLocation>config/maven_checks.xml</configLocation>
-                </configuration>
-            </plugin> 
-            <plugin>
                 <groupId>${project.groupId}</groupId>
                 <artifactId>${project.artifactId}</artifactId>
                 <version>${project.version}</version>