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 2011/11/25 22:12:58 UTC

svn commit: r1206325 - in /maven/plugin-testing/branches/plugin-testing-mvn-3.x: .gitignore pom.xml

Author: olamy
Date: Fri Nov 25 21:12:57 2011
New Revision: 1206325

URL: http://svn.apache.org/viewvc?rev=1206325&view=rev
Log:
add simple .gitignore, upgrade parent pom

Added:
    maven/plugin-testing/branches/plugin-testing-mvn-3.x/.gitignore
Modified:
    maven/plugin-testing/branches/plugin-testing-mvn-3.x/pom.xml

Added: maven/plugin-testing/branches/plugin-testing-mvn-3.x/.gitignore
URL: http://svn.apache.org/viewvc/maven/plugin-testing/branches/plugin-testing-mvn-3.x/.gitignore?rev=1206325&view=auto
==============================================================================
--- maven/plugin-testing/branches/plugin-testing-mvn-3.x/.gitignore (added)
+++ maven/plugin-testing/branches/plugin-testing-mvn-3.x/.gitignore Fri Nov 25 21:12:57 2011
@@ -0,0 +1,8 @@
+target
+#eclipse
+.classpath
+.project
+.settings
+#idea
+*.iml
+

Modified: maven/plugin-testing/branches/plugin-testing-mvn-3.x/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-testing/branches/plugin-testing-mvn-3.x/pom.xml?rev=1206325&r1=1206324&r2=1206325&view=diff
==============================================================================
--- maven/plugin-testing/branches/plugin-testing-mvn-3.x/pom.xml (original)
+++ maven/plugin-testing/branches/plugin-testing-mvn-3.x/pom.xml Fri Nov 25 21:12:57 2011
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <artifactId>maven-parent</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>15</version>
+    <version>21</version>
     <relativePath>../pom/maven/pom.xml</relativePath>
   </parent>
 
@@ -206,7 +206,6 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.4.3</version>
           <configuration>
             <systemProperties>
               <property>
@@ -219,7 +218,6 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.0.2</version>
           <configuration>
             <source>1.5</source>
             <target>1.5</target>
@@ -227,7 +225,7 @@ under the License.
         </plugin>        
         <plugin>
           <artifactId>maven-site-plugin</artifactId>
-          <version>2.0.1</version>
+          <version>3.0</version>
           <configuration>
             <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugin-testing/${project.artifactId}-${project.version}</stagingSiteURL>
           </configuration>
@@ -241,11 +239,11 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-remote-resources-plugin</artifactId>
-          <version>1.1</version>
+          <version>1.2</version>
         </plugin>        
         <plugin>
           <artifactId>maven-javadoc-plugin</artifactId>
-          <version>2.5</version>
+          <version>2.8</version>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -272,7 +270,7 @@ under the License.
         <plugins>
           <plugin>
             <artifactId>maven-javadoc-plugin</artifactId>
-            <version>2.5</version>
+            <version>2.8</version>
           </plugin>
           <plugin>
             <artifactId>maven-pmd-plugin</artifactId>
@@ -283,46 +281,5 @@ under the License.
         </plugins>
       </reporting>
     </profile>
-    <profile>
-      <id>m2e</id>
-      <activation>
-        <property>
-          <name>m2e.version</name>
-        </property>
-      </activation>
-      <properties>
-        <m2buildDirectory>build</m2buildDirectory>
-      </properties>
-      <build>
-        <directory>${m2buildDirectory}</directory>
-        <plugins>
-          <plugin>
-            <groupId>org.maven.ide.eclipse</groupId>
-            <artifactId>lifecycle-mapping</artifactId>
-            <version>0.9.9-SNAPSHOT</version>
-            <configuration>
-              <mappingId>customizable</mappingId>
-              <configurators>
-                <configurator id="org.maven.ide.eclipse.jdt.javaConfigurator" />
-                <configurator id="org.maven.ide.eclipse.modello.modelloConfigurator" />
-                <configurator id="org.maven.ide.eclipse.plexus.annotations.plexusConfigurator" />
-              </configurators>
-              <mojoExecutions>
-                <mojoExecution>org.apache.maven.plugins:maven-resources-plugin::</mojoExecution>
-              </mojoExecutions>
-            </configuration>
-          </plugin>
-        </plugins>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-resources-plugin</artifactId>
-              <version>2.4.1</version>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
-  </profiles>  
+  </profiles>
 </project>