Author: ltheussl Date: Wed May 20 10:19:04 2009 New Revision: 776649 URL: http://svn.apache.org/viewvc?rev=776649&view=rev Log: clirr complains about shaded classes, shouldn't it compare final jars instead of .class files?
Modified: maven/doxia/doxia/trunk/doxia-maven-plugin/pom.xml Modified: maven/doxia/doxia/trunk/doxia-maven-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-maven-plugin/pom.xml?rev=776649&r1=776648&r2=776649&view=diff ============================================================================== --- maven/doxia/doxia/trunk/doxia-maven-plugin/pom.xml (original) +++ maven/doxia/doxia/trunk/doxia-maven-plugin/pom.xml Wed May 20 10:19:04 2009 @@ -118,12 +118,8 @@ </goals> <configuration> <finalName>${project.build.finalName}</finalName> - <createDependencyReducedPom> - false - </createDependencyReducedPom> - <keepDependenciesWithProvidedScope> - true - </keepDependenciesWithProvidedScope> + <createDependencyReducedPom>false</createDependencyReducedPom> + <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" /> </transformers> @@ -137,6 +133,19 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <configuration> + <comparisonVersion>1.1</comparisonVersion> + <excludes> + <!-- exclude shaded packages --> + <exclude>org/apache/maven/doxia/logging/**</exclude> + <exclude>org/apache/maven/doxia/sink/**</exclude> + <exclude>org/codehaus/doxia/sink/**</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build>