Author: bdekruijff at gmail.com
Date: Wed Nov  3 19:30:11 2010
New Revision: 243

Log:
AMDATU-116 Added missing explicit versions to satisfy Maven 3

Modified:
   trunk/pom.xml

Modified: trunk/pom.xml
==============================================================================
--- trunk/pom.xml       (original)
+++ trunk/pom.xml       Wed Nov  3 19:30:11 2010
@@ -480,7 +480,7 @@
       <version>${pax-web.version}</version>
       <scope>provided</scope>
     </dependency>
-    
+
     <!-- Swissbox is used to resolve classloading issues in Jasper -->
     <dependency>
       <groupId>org.ops4j.pax.swissbox</groupId>
@@ -623,6 +623,11 @@
         </plugin>
 
         <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.7</version>
+        </plugin>
+
+        <plugin>
           <artifactId>maven-project-info-reports-plugin</artifactId>
           <version>2.2</version>
         </plugin>
@@ -638,6 +643,16 @@
         </plugin>
 
         <plugin>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.1.2</version>
+        </plugin>
+
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.6</version>
+        </plugin>
+
+        <plugin>
           <groupId>org.apache.felix</groupId>
           <artifactId>maven-bundle-plugin</artifactId>
           <extensions>true</extensions>
@@ -662,23 +677,20 @@
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <argLine>-Xmx384m</argLine>
-          <systemProperties>
-            <property>
-              <name>net.sourceforge.cobertura.datafile</name>
-              <value>${basedir}/target/cobertura/cobertura.ser</value>
-            </property>
-            <property>
-              <name>java.io.tmpdir</name>
-              <value>${java.io.tmpdir}</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            
<net.sourceforge.cobertura.datafile>${basedir}/target/cobertura/cobertura.ser</net.sourceforge.cobertura.datafile>
+            <java.io.tmpdir>${basedir}/target/iotemp</java.io.tmpdir>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
 
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <inherited>true</inherited>
+        <configuration>
+          <show>private</show>
+          <nohelp>true</nohelp>
+        </configuration>
         <executions>
           <execution>
             <id>attach-javadocs</id>
@@ -691,7 +703,6 @@
       </plugin>
 
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
         <inherited>true</inherited>
         <executions>
@@ -933,50 +944,34 @@
   <reporting>
     <outputDirectory>target/site</outputDirectory>
     <plugins>
+
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <inherited>false</inherited>
-            <reports>
-              <report>cim</report>
-              <!-- <report>dependencies</report> -->
-              <!-- <report>dependency-convergence</report> -->
-              <report>dependency-management</report>
-              <report>index</report>
-              <report>issue-tracking</report>
-              <report>license</report>
-              <report>mailing-list</report>
-              <report>plugin-management</report>
-              <report>plugins</report>
-              <report>project-team</report>
-              <report>scm</report>
-              <report>summary</report>
-            </reports>
-          </reportSet>
-        </reportSets>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.6</version>
+        <configuration>
+          <linkXref>true</linkXref>
+        </configuration>
       </plugin>
 
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.7</version>
         <configuration>
-          <aggregate>false</aggregate>
+          <show>public</show>
         </configuration>
       </plugin>
 
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-checkstyle-plugin</artifactId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.2</version>
         <configuration>
-          <linkXref>true</linkXref>
+          <aggregate>false</aggregate>
         </configuration>
       </plugin>
 
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-pmd-plugin</artifactId>
+        <version>2.5</version>
         <configuration>
           <aggregate>false</aggregate>
           <linkXref>true</linkXref>
@@ -987,13 +982,40 @@
       </plugin>
 
       <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.2</version>
+        <reportSets>
+          <reportSet>
+            <inherited>false</inherited>
+            <reports>
+              <report>cim</report>
+              <!-- <report>dependencies</report> -->
+              <!-- <report>dependency-convergence</report> -->
+              <report>dependency-management</report>
+              <report>index</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>mailing-list</report>
+              <report>plugin-management</report>
+              <report>plugins</report>
+              <report>project-team</report>
+              <report>scm</report>
+              <report>summary</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>javancss-maven-plugin</artifactId>
+        <version>2.0-beta-2</version>
       </plugin>
 
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.4</version>
         <configuration>
           <formats>
             <format>html</format>
@@ -1005,6 +1027,7 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
+        <version>2.3.1</version>
         <configuration>
           <xmlOutput>true</xmlOutput>
           <threshold>High</threshold>

Reply via email to