You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2019/02/09 13:32:33 UTC

svn commit: r1853277 - /pdfbox/branches/1.8/parent/pom.xml

Author: tilman
Date: Sat Feb  9 13:32:33 2019
New Revision: 1853277

URL: http://svn.apache.org/viewvc?rev=1853277&view=rev
Log:
PDFBOX-4071: move maven-enforcer-plugin to pluginManagement section so that it has an effect on subprojects; require maven 3.1

Modified:
    pdfbox/branches/1.8/parent/pom.xml

Modified: pdfbox/branches/1.8/parent/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/parent/pom.xml?rev=1853277&r1=1853276&r2=1853277&view=diff
==============================================================================
--- pdfbox/branches/1.8/parent/pom.xml (original)
+++ pdfbox/branches/1.8/parent/pom.xml Sat Feb  9 13:32:33 2019
@@ -107,23 +107,6 @@
   <build>
       <plugins>
         <plugin>
-            <artifactId>maven-enforcer-plugin</artifactId>
-            <executions>
-                <execution>
-                    <goals>
-                        <goal>enforce</goal>
-                    </goals>
-                    <configuration>
-                        <rules combine.children="append">
-                            <requireMavenVersion>
-                                <version>3.0.0</version>
-                            </requireMavenVersion>
-                        </rules>    
-                    </configuration>
-                </execution>
-            </executions>
-        </plugin>
-        <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <target>1.5</target>
@@ -185,6 +168,23 @@
     <pluginManagement>
       <plugins>
           <plugin>
+              <artifactId>maven-enforcer-plugin</artifactId>
+              <executions>
+                  <execution>
+                      <goals>
+                          <goal>enforce</goal>
+                      </goals>
+                      <configuration>
+                          <rules combine.children="append">
+                              <requireMavenVersion>
+                                  <version>3.1</version>
+                              </requireMavenVersion>
+                          </rules>    
+                      </configuration>
+                  </execution>
+              </executions>
+          </plugin>
+          <plugin>
             <groupId>org.apache.rat</groupId>
             <artifactId>apache-rat-plugin</artifactId>
             <version>0.11</version>