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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>7.1-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-ce</artifactId>
  11. <name>SonarQube :: Compute Engine</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>${project.groupId}</groupId>
  15. <artifactId>sonar-server</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.nanohttpd</groupId>
  20. <artifactId>nanohttpd</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.protobuf</groupId>
  24. <artifactId>protobuf-java</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.code.findbugs</groupId>
  28. <artifactId>jsr305</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <!-- unit tests -->
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.tngtech.java</groupId>
  39. <artifactId>junit-dataprovider</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.assertj</groupId>
  44. <artifactId>assertj-core</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.assertj</groupId>
  49. <artifactId>assertj-guava</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mockito</groupId>
  54. <artifactId>mockito-core</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>${project.groupId}</groupId>
  59. <artifactId>sonar-db-testing</artifactId>
  60. <type>pom</type>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. </project>