You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1014B

12345678910111213141516171819202122232425
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>fake.group</groupId>
  5. <artifactId>fake.artifactId</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <properties>
  9. <sonar.reuseExistingRulesConfiguration>true</sonar.reuseExistingRulesConfiguration>
  10. </properties>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-checkstyle-plugin</artifactId>
  16. <configuration>
  17. <!-- ugly workaround for unit tests : ${basedir} is not replaced by the real path -->
  18. <configLocation>src/test/resources/org/sonar/plugins/checkstyle/CheckstyleConfigurationTest/findConfigurationToReuse/checkstyle.xml</configLocation>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. </project>