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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-deprecated</artifactId>
  10. <name>SonarQube :: Deprecated</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>${project.groupId}</groupId>
  14. <artifactId>sonar-plugin-api</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>jfree</groupId>
  18. <artifactId>jfreechart</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.code.findbugs</groupId>
  22. <artifactId>jsr305</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <!-- unit test -->
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.hamcrest</groupId>
  33. <artifactId>hamcrest-all</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>${project.groupId}</groupId>
  38. <artifactId>sonar-plugin-api</artifactId>
  39. <type>test-jar</type>
  40. <version>${project.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.mockito</groupId>
  45. <artifactId>mockito-core</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.easytesting</groupId>
  50. <artifactId>fest-assert</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>