Author: tilman Date: Sat Oct 18 11:57:29 2025 New Revision: 1929209 Log: PDFBOX-5660: add exclusions for rat 0.17
Modified: pdfbox/branches/2.0/pom.xml Modified: pdfbox/branches/2.0/pom.xml ============================================================================== --- pdfbox/branches/2.0/pom.xml Sat Oct 18 11:47:17 2025 (r1929208) +++ pdfbox/branches/2.0/pom.xml Sat Oct 18 11:57:29 2025 (r1929209) @@ -51,20 +51,25 @@ </scm> <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <version>0.16.1</version> - <configuration> - <excludes> - <exclude>release.properties</exclude> - </excludes> - </configuration> - </plugin> - </plugins> - </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <!-- already tested before --> + <exclude>/pdfbox/**</exclude> + <exclude>/fontbox/**</exclude> + <exclude>/xmpbox/**</exclude> + <exclude>/tools/**</exclude> + <exclude>/preflight/**</exclude> + <exclude>/examples/**</exclude> + <!-- netbeans local --> + <exclude>nb-configuration.xml</exclude> + </excludes> + </configuration> + </plugin> + </plugins> </build> <profiles>
