Author: fchrist Date: Mon Jun 4 13:18:06 2012 New Revision: 1345951 URL: http://svn.apache.org/viewvc?rev=1345951&view=rev Log: STANBOL-641 Fixed RAT and release config
Modified: incubator/stanbol/trunk/parent/pom.xml Modified: incubator/stanbol/trunk/parent/pom.xml URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/parent/pom.xml?rev=1345951&r1=1345950&r2=1345951&view=diff ============================================================================== --- incubator/stanbol/trunk/parent/pom.xml (original) +++ incubator/stanbol/trunk/parent/pom.xml Mon Jun 4 13:18:06 2012 @@ -392,6 +392,13 @@ <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.8</version> + <executions> + <execution> + <configuration> + <reportFile>${project.build.directory}/maven-shared-archive-resources/META-INF/RAT-REPORT</reportFile> + </configuration> + </execution> + </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -1407,13 +1414,13 @@ <goals> <goal>check</goal> </goals> - </execution> + </execution> </executions> <configuration> <excludes> <exclude>src/license/THIRD-PARTY.properties</exclude> - </excludes> - </configuration> + </excludes> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -1421,7 +1428,7 @@ <executions> <execution> <goals> - <goal>aggregate-add-third-party</goal> + <goal>add-third-party</goal> </goals> </execution> </executions> @@ -1437,6 +1444,23 @@ <build> <plugins> <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <executions> + <execution> + <phase>compile</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <excludes> + <exclude>src/license/THIRD-PARTY.properties</exclude> + </excludes> + </configuration> + </plugin> + <plugin> <artifactId>maven-assembly-plugin</artifactId> <dependencies> <dependency> @@ -1456,7 +1480,7 @@ </goals> </execution> </executions> - </plugin> + </plugin> </plugins> </build> </profile>