pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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/maven-v4_0_0.xsd">
  3. <!--
  4. /**
  5. * Licensed to the Apache Software Foundation (ASF) under one
  6. * or more contributor license agreements. See the NOTICE file
  7. * distributed with this work for additional information
  8. * regarding copyright ownership. The ASF licenses this file
  9. * to you under the Apache License, Version 2.0 (the
  10. * "License"); you may not use this file except in compliance
  11. * with the License. You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing, software
  16. * distributed under the License is distributed on an "AS IS" BASIS,
  17. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. * See the License for the specific language governing permissions and
  19. * limitations under the License.
  20. */
  21. -->
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>org.apache.zookeeper</groupId>
  25. <artifactId>zookeeper-contrib</artifactId>
  26. <version>3.7.0-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>zookeeper-contrib-rest</artifactId>
  29. <packaging>jar</packaging>
  30. <name>Apache ZooKeeper - Contrib - Rest</name>
  31. <description>
  32. ZooKeeper REST implementation using Jersey JAX-RS.
  33. --------------------------------------------------
  34. This is an implementation of version 2 of the ZooKeeper REST spec.
  35. Note: This interface is currently experimental, may change at any time,
  36. etc... In general you should be using the Java/C client bindings to access
  37. the ZooKeeper server.
  38. This REST ZooKeeper gateway is useful because most of the languages
  39. have built-in support for working with HTTP based protocols.
  40. See SPEC.txt for details on the REST binding.
  41. </description>
  42. <properties>
  43. <asm.version>3.1</asm.version>
  44. <grizzly.version>1.9.8</grizzly.version>
  45. <jersey.version>1.1.5.1</jersey.version>
  46. </properties>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.apache.zookeeper</groupId>
  50. <artifactId>zookeeper</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.zookeeper</groupId>
  55. <artifactId>zookeeper</artifactId>
  56. <version>${project.version}</version>
  57. <type>test-jar</type>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-api</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.slf4j</groupId>
  66. <artifactId>slf4j-log4j12</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>*</groupId>
  70. <artifactId>*</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>log4j</groupId>
  76. <artifactId>log4j</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>*</groupId>
  80. <artifactId>*</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>asm</groupId>
  86. <artifactId>asm</artifactId>
  87. <version>${asm.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.sun.grizzly</groupId>
  91. <artifactId>grizzly-servlet-webserver</artifactId>
  92. <version>${grizzly.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.sun.jersey</groupId>
  96. <artifactId>jersey-server</artifactId>
  97. <version>${jersey.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.sun.jersey</groupId>
  101. <artifactId>jersey-json</artifactId>
  102. <version>${jersey.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.sun.jersey</groupId>
  106. <artifactId>jersey-client</artifactId>
  107. <version>${jersey.version}</version>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.junit.vintage</groupId>
  112. <artifactId>junit-vintage-engine</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-surefire-plugin</artifactId>
  121. <configuration>
  122. <!-- ToDo -->
  123. <skipTests>true</skipTests>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>