pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Licensed to the Apache Software Foundation (ASF) under one
  5. * or more contributor license agreements. See the NOTICE file
  6. * distributed with this work for additional information
  7. * regarding copyright ownership. The ASF licenses this file
  8. * to you under the Apache License, Version 2.0 (the
  9. * "License"); you may not use this file except in compliance
  10. * with the License. You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. -->
  21. <project xmlns="http://maven.apache.org/POM/4.0.0"
  22. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  23. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  24. <parent>
  25. <groupId>org.apache.zookeeper</groupId>
  26. <artifactId>zookeeper-compatibility-tests</artifactId>
  27. <version>3.7.0-SNAPSHOT</version>
  28. </parent>
  29. <modelVersion>4.0.0</modelVersion>
  30. <artifactId>zookeeper-compatibility-tests-curator</artifactId>
  31. <name>Apache ZooKeeper - Compatibility Tests - Curator</name>
  32. <description>Module for Apache Curator compatibility tests</description>
  33. <properties>
  34. <apache-curator-version>5.0.0</apache-curator-version>
  35. </properties>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.apache.zookeeper</groupId>
  39. <artifactId>zookeeper</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.curator</groupId>
  44. <artifactId>curator-recipes</artifactId>
  45. <version>${apache-curator-version}</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>org.apache.zookeeper</groupId>
  49. <artifactId>zookeeper</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.curator</groupId>
  56. <artifactId>curator-test</artifactId>
  57. <version>${apache-curator-version}</version>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>org.apache.zookeeper</groupId>
  61. <artifactId>zookeeper</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.junit.jupiter</groupId>
  68. <artifactId>junit-jupiter-engine</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>