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 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>4.5.4</version>
  8. </parent>
  9. <artifactId>sonar-java-api</artifactId>
  10. <name>SonarQube :: Java API</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.codehaus.sonar</groupId>
  14. <artifactId>sonar-plugin-api</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.codehaus.sonar</groupId>
  18. <artifactId>sonar-deprecated</artifactId>
  19. </dependency>
  20. <!-- unit tests -->
  21. <dependency>
  22. <groupId>org.codehaus.sonar</groupId>
  23. <artifactId>sonar-testing-harness</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-surefire-plugin</artifactId>
  32. <configuration>
  33. <skipTests>${skipBatchTests}</skipTests>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>