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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.sonarsource.sonarqube</groupId>
  6. <artifactId>server</artifactId>
  7. <version>6.4-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-ce-api</artifactId>
  11. <name>SonarQube :: Compute Engine API</name>
  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.picocontainer</groupId>
  20. <artifactId>picocontainer</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.guava</groupId>
  24. <artifactId>guava</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.sonarsource.sonarqube</groupId>
  28. <artifactId>sonar-plugin-api</artifactId>
  29. </dependency>
  30. <!-- unit tests -->
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.tngtech.java</groupId>
  38. <artifactId>junit-dataprovider</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.assertj</groupId>
  43. <artifactId>assertj-core</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.mockito</groupId>
  48. <artifactId>mockito-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>${project.groupId}</groupId>
  53. <artifactId>sonar-db-testing</artifactId>
  54. <type>pom</type>
  55. <scope>test</scope>
  56. </dependency>
  57. </dependencies>
  58. </project>