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.1KB

12345678910111213141516171819202122232425262728293031323334353637
  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>5.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-home</artifactId>
  10. <name>SonarQube :: Home</name>
  11. <description>Access the user home directory that contains cache of files</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.google.code.findbugs</groupId>
  15. <artifactId>jsr305</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.codehaus.sonar</groupId>
  20. <artifactId>sonar-testing-harness</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <!-- used to compare results -->
  25. <groupId>commons-codec</groupId>
  26. <artifactId>commons-codec</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. </dependencies>
  30. </project>