Author: mbenson Date: Mon Mar 17 05:35:28 2014 New Revision: 1578232 URL: http://svn.apache.org/r1578232 Log: suppress clirr for antlib w/ reason
Modified: commons/proper/weaver/trunk/ant/lib/pom.xml Modified: commons/proper/weaver/trunk/ant/lib/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/weaver/trunk/ant/lib/pom.xml?rev=1578232&r1=1578231&r2=1578232&view=diff ============================================================================== --- commons/proper/weaver/trunk/ant/lib/pom.xml (original) +++ commons/proper/weaver/trunk/ant/lib/pom.xml Mon Mar 17 05:35:28 2014 @@ -54,7 +54,6 @@ under the License. <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>${ant.version}</version> - <scope>provided</scope> </dependency> </dependencies> <build> @@ -144,6 +143,21 @@ under the License. </execution> </executions> </plugin> + <!-- must suppress clirr until we release weaver 1.0.1 with + ant as a compile-scoped dependency. It really should + be provided, but clirr can't find provided dependencies + on the old artifact, and for the purposes of an Antlib + it doesn't really hurt anything to declare as 'compile'. + --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/*</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> <reporting> @@ -166,6 +180,21 @@ under the License. <headerLocation>org/apache/commons/weaver/license-header.txt</headerLocation> </configuration> </plugin> + <!-- must suppress clirr until we release weaver 1.0.1 with + ant as a compile-scoped dependency. It really should + be provided, but clirr can't find provided dependencies + on the old artifact, and for the purposes of an Antlib + it doesn't really hurt anything to declare as 'compile'. + --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/*</exclude> + </excludes> + </configuration> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId>