You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2015/07/19 15:43:23 UTC

svn commit: r1691826 - in /pdfbox/branches/1.8: ./ ant/pom.xml examples/pom.xml fontbox/pom.xml jempbox/pom.xml lucene/pom.xml pdfbox/pom.xml pom.xml preflight-app/pom.xml preflight/pom.xml xmpbox/pom.xml

Author: lehmi
Date: Sun Jul 19 13:43:23 2015
New Revision: 1691826

URL: http://svn.apache.org/r1691826
Log:
PDFBOX-2891: activate maven animal sniffer plugin for every single sub project

Modified:
    pdfbox/branches/1.8/   (props changed)
    pdfbox/branches/1.8/ant/pom.xml
    pdfbox/branches/1.8/examples/pom.xml
    pdfbox/branches/1.8/fontbox/pom.xml
    pdfbox/branches/1.8/jempbox/pom.xml
    pdfbox/branches/1.8/lucene/pom.xml
    pdfbox/branches/1.8/pdfbox/pom.xml
    pdfbox/branches/1.8/pom.xml
    pdfbox/branches/1.8/preflight-app/pom.xml
    pdfbox/branches/1.8/preflight/pom.xml
    pdfbox/branches/1.8/xmpbox/pom.xml

Propchange: pdfbox/branches/1.8/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Jul 19 13:43:23 2015
@@ -1 +1 @@
-/pdfbox/trunk:1460370,1460372,1461796,1465163,1465217,1465266,1465359-1465360,1465366,1467638,1468195,1469999,1470107,1470242,1476795,1477806,1478472,1479136,1479287,1480000,1480030,1484089,1484277,1484547,1485771,1485781,1486337,1486413,1486423,1486440,1487557,1488049,1490022-1490023,1490408,1493503,1494083,1495799,1495802-1495803,1497532,1504210,1504214,1505737,1509187,1512367,1512433,1512661,1515101,1515165,1515905,1517273,1517281,1517288,1519174,1521194,1528826,1528833,1530018,1530740,1535953,1535956,1536136,1536173,1536441,1536463,1537287,1538191,1538203,1538222,1538341,1538371,1538394-1538395,1540801,1540811,1541625,1541714,1541987,1542291,1542780,1544789,1544806,1544818,1544972,1544977,1548387,1548394,1549022,1549025,1549027,1551220,1552521,1552533,1552552,1553017,1553175,1553220,1554632,1554774,1554792,1554845,1555186,1555345,1555550,1557339,1557374,1557546,1557553,1557561,1557793,1558205,1558570,1561095,1561191,1563199,1563210,1563215,1563426,1563429,1564846,1588736,1598655
 ,1598885,1599016,1599656,1599786,1601144,1601451,1640355-1640356,1640513
+/pdfbox/trunk:1460370,1460372,1461796,1465163,1465217,1465266,1465359-1465360,1465366,1467638,1468195,1469999,1470107,1470242,1476795,1477806,1478472,1479136,1479287,1480000,1480030,1484089,1484277,1484547,1485771,1485781,1486337,1486413,1486423,1486440,1487557,1488049,1490022-1490023,1490408,1493503,1494083,1495799,1495802-1495803,1497532,1504210,1504214,1505737,1509187,1512367,1512433,1512661,1515101,1515165,1515905,1517273,1517281,1517288,1519174,1521194,1528826,1528833,1530018,1530740,1535953,1535956,1536136,1536173,1536441,1536463,1537287,1538191,1538203,1538222,1538341,1538371,1538394-1538395,1540801,1540811,1541625,1541714,1541987,1542291,1542780,1544789,1544806,1544818,1544972,1544977,1548387,1548394,1549022,1549025,1549027,1551220,1552521,1552533,1552552,1553017,1553175,1553220,1554632,1554774,1554792,1554845,1555186,1555345,1555550,1557339,1557374,1557546,1557553,1557561,1557793,1558205,1558570,1561095,1561191,1563199,1563210,1563215,1563426,1563429,1564846,1588736,1598655
 ,1598885,1599016,1599656,1599786,1601144,1601451,1614078,1640355-1640356,1640513

Modified: pdfbox/branches/1.8/ant/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/ant/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/ant/pom.xml (original)
+++ pdfbox/branches/1.8/ant/pom.xml Sun Jul 19 13:43:23 2015
@@ -43,4 +43,29 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+       <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+           <artifactId>animal-sniffer-maven-plugin</artifactId>
+           <configuration>
+             <signature>
+               <groupId>org.codehaus.mojo.signature</groupId>
+               <artifactId>java15</artifactId>
+               <version>1.0</version>
+             </signature>
+           </configuration>
+           <executions>
+             <execution>
+                <id>check-java-compatibility</id>
+                <phase>test</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+       </plugin>    
+    </plugins>
+  </build>
+
 </project>

Modified: pdfbox/branches/1.8/examples/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/examples/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/examples/pom.xml (original)
+++ pdfbox/branches/1.8/examples/pom.xml Sun Jul 19 13:43:23 2015
@@ -75,6 +75,26 @@
       </resource>
     </resources>
     <plugins>
+       <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+           <artifactId>animal-sniffer-maven-plugin</artifactId>
+           <configuration>
+             <signature>
+               <groupId>org.codehaus.mojo.signature</groupId>
+               <artifactId>java15</artifactId>
+               <version>1.0</version>
+             </signature>
+           </configuration>
+           <executions>
+             <execution>
+                <id>check-java-compatibility</id>
+                <phase>test</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+       </plugin>    
     </plugins>
   </build>
 

Modified: pdfbox/branches/1.8/fontbox/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/fontbox/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/fontbox/pom.xml (original)
+++ pdfbox/branches/1.8/fontbox/pom.xml Sun Jul 19 13:43:23 2015
@@ -58,6 +58,26 @@
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
       </plugin>
+      <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>animal-sniffer-maven-plugin</artifactId>
+          <configuration>
+            <signature>
+              <groupId>org.codehaus.mojo.signature</groupId>
+              <artifactId>java15</artifactId>
+              <version>1.0</version>
+            </signature>
+          </configuration>
+          <executions>
+            <execution>
+               <id>check-java-compatibility</id>
+               <phase>test</phase>
+               <goals>
+                 <goal>check</goal>
+               </goals>
+             </execution>
+           </executions>
+      </plugin>    
     </plugins>
   </build>
 

Modified: pdfbox/branches/1.8/jempbox/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/jempbox/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/jempbox/pom.xml (original)
+++ pdfbox/branches/1.8/jempbox/pom.xml Sun Jul 19 13:43:23 2015
@@ -51,6 +51,26 @@
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
       </plugin>
+      <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>animal-sniffer-maven-plugin</artifactId>
+          <configuration>
+            <signature>
+              <groupId>org.codehaus.mojo.signature</groupId>
+              <artifactId>java15</artifactId>
+              <version>1.0</version>
+            </signature>
+          </configuration>
+          <executions>
+            <execution>
+               <id>check-java-compatibility</id>
+               <phase>test</phase>
+               <goals>
+                 <goal>check</goal>
+               </goals>
+             </execution>
+           </executions>
+      </plugin>    
     </plugins>
   </build>
 

Modified: pdfbox/branches/1.8/lucene/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/lucene/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/lucene/pom.xml (original)
+++ pdfbox/branches/1.8/lucene/pom.xml Sun Jul 19 13:43:23 2015
@@ -52,5 +52,30 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+       <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+           <artifactId>animal-sniffer-maven-plugin</artifactId>
+           <configuration>
+             <signature>
+               <groupId>org.codehaus.mojo.signature</groupId>
+               <artifactId>java15</artifactId>
+               <version>1.0</version>
+             </signature>
+           </configuration>
+           <executions>
+             <execution>
+                <id>check-java-compatibility</id>
+                <phase>test</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+       </plugin>    
+    </plugins>
+  </build>
+
 </project>
 

Modified: pdfbox/branches/1.8/pdfbox/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pdfbox/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/pdfbox/pom.xml (original)
+++ pdfbox/branches/1.8/pdfbox/pom.xml Sun Jul 19 13:43:23 2015
@@ -139,6 +139,26 @@
                 </dependencies>
             </plugin>
             <plugin>
+	            <groupId>org.codehaus.mojo</groupId>
+	            <artifactId>animal-sniffer-maven-plugin</artifactId>
+   	            <configuration>
+		          <signature>
+		            <groupId>org.codehaus.mojo.signature</groupId>
+		            <artifactId>java15</artifactId>
+		            <version>1.0</version>
+		          </signature>
+		        </configuration>
+	            <executions>
+	              <execution>
+	                 <id>check-java-compatibility</id>
+	                 <phase>test</phase>
+	                 <goals>
+	                   <goal>check</goal>
+	                 </goals>
+	               </execution>
+	             </executions>
+            </plugin>    
+            <plugin>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <argLine>-Xmx128m</argLine>

Modified: pdfbox/branches/1.8/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/pom.xml (original)
+++ pdfbox/branches/1.8/pom.xml Sun Jul 19 13:43:23 2015
@@ -65,27 +65,6 @@
           <skip>true</skip>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>animal-sniffer-maven-plugin</artifactId>
-        <version>1.13</version>
-        <executions>
-           <execution>
-              <id>check-java-version</id>
-              <phase>compile</phase>
-              <goals>
-                <goal>check</goal>
-              </goals>
-              <configuration>
-                <signature>
-                  <groupId>org.codehaus.mojo.signature</groupId>
-                  <artifactId>java15</artifactId>
-                  <version>1.0</version>
-                </signature>
-              </configuration>
-           </execution>
-        </executions>
-      </plugin>    
     </plugins>
   </build>
 

Modified: pdfbox/branches/1.8/preflight-app/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/preflight-app/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
Binary files - no diff available.

Modified: pdfbox/branches/1.8/preflight/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/preflight/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/preflight/pom.xml (original)
+++ pdfbox/branches/1.8/preflight/pom.xml Sun Jul 19 13:43:23 2015
@@ -126,6 +126,26 @@
 					</execution>
 				</executions>
 			</plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>animal-sniffer-maven-plugin</artifactId>
+                <configuration>
+                  <signature>
+                    <groupId>org.codehaus.mojo.signature</groupId>
+                    <artifactId>java15</artifactId>
+                    <version>1.0</version>
+                  </signature>
+                </configuration>
+                <executions>
+                  <execution>
+                     <id>check-java-compatibility</id>
+                     <phase>test</phase>
+                     <goals>
+                       <goal>check</goal>
+                     </goals>
+                   </execution>
+                 </executions>
+            </plugin>    
 			<plugin>
 				<groupId>org.apache.rat</groupId>
 				<artifactId>apache-rat-plugin</artifactId>

Modified: pdfbox/branches/1.8/xmpbox/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/xmpbox/pom.xml?rev=1691826&r1=1691825&r2=1691826&view=diff
==============================================================================
--- pdfbox/branches/1.8/xmpbox/pom.xml (original)
+++ pdfbox/branches/1.8/xmpbox/pom.xml Sun Jul 19 13:43:23 2015
@@ -62,7 +62,26 @@
 					<configLocation>../pdfbox-checkstyle-5.xml</configLocation>
 				</configuration>
 			</plugin>
-			
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>animal-sniffer-maven-plugin</artifactId>
+                <configuration>
+                  <signature>
+                    <groupId>org.codehaus.mojo.signature</groupId>
+                    <artifactId>java15</artifactId>
+                    <version>1.0</version>
+                  </signature>
+                </configuration>
+                <executions>
+                  <execution>
+                     <id>check-java-compatibility</id>
+                     <phase>test</phase>
+                     <goals>
+                       <goal>check</goal>
+                     </goals>
+                   </execution>
+                 </executions>
+            </plugin>    
 		</plugins>
 	</build>