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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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.5-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-ce</artifactId>
  11. <name>SonarQube :: Compute Engine</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.sonarsource.sonarqube</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. <dependency>
  32. <groupId>com.hazelcast</groupId>
  33. <artifactId>hazelcast-client</artifactId>
  34. </dependency>
  35. <!-- unit tests -->
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.tngtech.java</groupId>
  43. <artifactId>junit-dataprovider</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.assertj</groupId>
  48. <artifactId>assertj-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.assertj</groupId>
  53. <artifactId>assertj-guava</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <!-- TODO to be removed -->
  58. <groupId>org.hamcrest</groupId>
  59. <artifactId>hamcrest-all</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.mockito</groupId>
  64. <artifactId>mockito-core</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>${project.groupId}</groupId>
  69. <artifactId>sonar-db-testing</artifactId>
  70. <type>pom</type>
  71. <scope>test</scope>
  72. </dependency>
  73. </dependencies>
  74. </project>