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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>sonarqube</artifactId>
  7. <version>7.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-ws</artifactId>
  10. <name>SonarQube :: Web Service</name>
  11. <description>Protocol Buffers specification of Web Services</description>
  12. <properties>
  13. <sonar.exclusions>target/generated-sources/**/*,src/main/java/org/sonarqube/ws/client/*/*.java</sonar.exclusions>
  14. <sonar.test.exclusions>target/generated-test-sources/**/*,src/test/java/org/sonarqube/ws/client/*/*.java</sonar.test.exclusions>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.google.protobuf</groupId>
  19. <artifactId>protobuf-java</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.guava</groupId>
  23. <artifactId>guava</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.squareup.okhttp3</groupId>
  27. <artifactId>okhttp</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.code.findbugs</groupId>
  31. <artifactId>jsr305</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-io</groupId>
  36. <artifactId>commons-io</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.sonarsource.sonarqube</groupId>
  40. <artifactId>sonar-plugin-api</artifactId>
  41. <scope>provided</scope>
  42. <optional>true</optional>
  43. </dependency>
  44. <!-- Tests -->
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.assertj</groupId>
  52. <artifactId>assertj-core</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mockito</groupId>
  57. <artifactId>mockito-core</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>${project.groupId}</groupId>
  62. <artifactId>sonar-testing-harness</artifactId>
  63. <version>${project.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.squareup.okhttp3</groupId>
  68. <artifactId>mockwebserver</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-lang</groupId>
  73. <artifactId>commons-lang</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. </project>