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 2014/04/08 01:26:31 UTC

svn commit: r1585619 - /maven/plugins/trunk/maven-compiler-plugin/pom.xml

Author: hboutemy
Date: Mon Apr  7 23:26:31 2014
New Revision: 1585619

URL: http://svn.apache.org/r1585619
Log:
updated parent pom

Modified:
    maven/plugins/trunk/maven-compiler-plugin/pom.xml

Modified: maven/plugins/trunk/maven-compiler-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/pom.xml?rev=1585619&r1=1585618&r2=1585619&view=diff
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-compiler-plugin/pom.xml Mon Apr  7 23:26:31 2014
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>24</version>
+    <version>25</version>
     <relativePath>../maven-plugins/pom.xml</relativePath>
   </parent>
 
@@ -65,7 +65,6 @@ under the License.
     <groovyEclipseCompilerVersion>2.7.0-01</groovyEclipseCompilerVersion>
     <groovy-eclipse-batch>2.0.4-04</groovy-eclipse-batch>
     <openJpaVersion>2.2.0</openJpaVersion>
-    <maven.site.path>plugins-archives/${project.artifactId}-LATEST</maven.site.path>
   </properties>
 
   <contributors>
@@ -78,7 +77,6 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
-      <version>${mavenPluginPluginVersion}</version>
       <scope>provided</scope>
     </dependency>
     <!-- Maven -->
@@ -226,11 +224,24 @@ under the License.
                 <goal>descriptor</goal>
               </goals>
             </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <executions>
             <execution>
-              <id>help-goal</id>
-              <goals>
-                <goal>helpmojo</goal>
-              </goals>
+              <id>enforce-bytecode-version</id>
+              <configuration>
+              <rules>
+                <enforceBytecodeVersion>
+                  <maxJdkVersion>1.5</maxJdkVersion>
+                  <excludes>
+                    <exclude>org.apache.openjpa:openjpa</exclude>
+                    <exclude>org.codehaus.groovy:groovy-eclipse-batch</exclude>
+                  </excludes>
+                </enforceBytecodeVersion>
+              </rules>
+              </configuration>
             </execution>
           </executions>
         </plugin>
@@ -238,16 +249,6 @@ under the License.
     </pluginManagement>
   </build>
 
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <version>${mavenPluginPluginVersion}</version>
-      </plugin>
-    </plugins>
-  </reporting>
-
   <profiles>
     <profile>
       <id>run-its</id>
@@ -257,7 +258,6 @@ under the License.
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-invoker-plugin</artifactId>
-              <version>1.8</version>
               <configuration>
                 <debug>true</debug>
                 <projectsDirectory>src/it</projectsDirectory>
@@ -305,6 +305,7 @@ under the License.
           <groupId>org.apache.openjpa</groupId>
           <artifactId>openjpa</artifactId>
           <version>${openJpaVersion}</version>
+          <!-- TODO: scope test? -->
         </dependency>
       </dependencies>
     </profile>