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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>2.3-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-ws-client</artifactId>
  10. <packaging>jar</packaging>
  11. <name>Sonar :: Web Service Client</name>
  12. <description>Java library to request Sonar web services</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.googlecode.json-simple</groupId>
  16. <artifactId>json-simple</artifactId>
  17. <version>1.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-httpclient</groupId>
  21. <artifactId>commons-httpclient</artifactId>
  22. <version>3.1</version>
  23. <scope>provided</scope>
  24. <optional>true</optional>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.httpcomponents</groupId>
  28. <artifactId>httpclient</artifactId>
  29. <version>4.0</version>
  30. <scope>provided</scope>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <!-- for httpclient 4.0 -->
  35. <groupId>net.jcip</groupId>
  36. <artifactId>jcip-annotations</artifactId>
  37. <version>1.0</version>
  38. <!--
  39. Annotations are only _required_ during a build
  40. They are not needed at run-time
  41. Provided means that the dependency is not transitive.
  42. -->
  43. <scope>provided</scope>
  44. </dependency>
  45. <!-- unit tests -->
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.hamcrest</groupId>
  53. <artifactId>hamcrest-all</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mockito</groupId>
  58. <artifactId>mockito-all</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-io</groupId>
  63. <artifactId>commons-io</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>slf4j-api</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>jcl-over-slf4j</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>ch.qos.logback</groupId>
  78. <artifactId>logback-classic</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.mortbay.jetty</groupId>
  83. <artifactId>jetty-servlet-tester</artifactId>
  84. <version>6.1.6</version>
  85. <scope>test</scope>
  86. </dependency>
  87. </dependencies>
  88. </project>