Author: damjan Date: Sat Nov 9 03:11:57 2013 New Revision: 1540251 URL: http://svn.apache.org/r1540251 Log: Add RAT exclusions for text-based images. Get Jacoco working.
Modified: commons/proper/imaging/trunk/LICENSE.txt commons/proper/imaging/trunk/pom.xml Modified: commons/proper/imaging/trunk/LICENSE.txt URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/LICENSE.txt?rev=1540251&r1=1540250&r2=1540251&view=diff ============================================================================== --- commons/proper/imaging/trunk/LICENSE.txt (original) +++ commons/proper/imaging/trunk/LICENSE.txt Sat Nov 9 03:11:57 2013 @@ -208,7 +208,8 @@ Apache Commons Imaging includes a number notices and license terms. Your use of these components is subject to the terms and conditions of the following licenses. -rgb.txt comes from the X.org project and is under the following licenses: +src/main/resources/org/apache/commons/imaging/formats/xpm/rgb.txt +comes from the X.org project and is under the following licenses: Copyright 1985, 1989, 1998 The Open Group Modified: commons/proper/imaging/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/pom.xml?rev=1540251&r1=1540250&r2=1540251&view=diff ============================================================================== --- commons/proper/imaging/trunk/pom.xml (original) +++ commons/proper/imaging/trunk/pom.xml Sat Nov 9 03:11:57 2013 @@ -107,9 +107,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <argLine>-Xmx512m</argLine> - </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -274,6 +271,21 @@ </tags> </configuration> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>src/test/data/images/xpm/1/symbolic.xpm</exclude> + <exclude>src/test/data/images/xpm/1/Oregon Scientific DS6639 - DSC_0307 - small.xpm</exclude> + <exclude>src/test/data/images/pbm/2/5x5-grayscale.pam</exclude> + <exclude>src/test/data/images/pbm/2/5x5-bw.pam</exclude> + <exclude>src/test/data/images/pbm/1/Oregon Scientific DS6639 - DSC_0307 - small.pgm</exclude> + <exclude>src/test/data/images/xbm/1/Oregon Scientific DS6639 - DSC_0307 - small.xbm</exclude> + <exclude>src/main/resources/org/apache/commons/imaging/formats/xpm/rgb.txt</exclude> + </excludes> + </configuration> + </plugin> </plugins> </reporting>