Tattletale - Multiple Jars


/ Published in: XML
Save to your folder(s)

Check duplicated classes in multiple jars


Copy this code and paste it in your HTML
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.jboss.tattletale</groupId>
  5. <artifactId>tattletale-maven</artifactId>
  6. <version>1.1.2.Final</version>
  7. <executions>
  8. <execution>
  9. <goals>
  10. <goal>report</goal>
  11. </goals>
  12. </execution>
  13. </executions>
  14. <configuration>
  15. <source>${basedir}/target/${project.artifactId}</source>
  16. <destination>${basedir}/target/tattletale-reports</destination>
  17. <reports>
  18. <report>multiplejars</report>
  19. </reports>
  20. <profiles>
  21. <profile>java6</profile>
  22. <profile>spring30</profile>
  23. </profiles>
  24. <failOnWarn>true</failOnWarn>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.