pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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" 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">
  22. <parent>
  23. <groupId>org.apache.zookeeper</groupId>
  24. <artifactId>zookeeper-compatibility-tests</artifactId>
  25. <version>3.10.0-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>zookeeper-compatibility-tests-curator</artifactId>
  29. <name>Apache ZooKeeper - Compatibility Tests - Curator</name>
  30. <description>Module for Apache Curator compatibility tests</description>
  31. <properties>
  32. <apache-curator-version>5.0.0</apache-curator-version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.zookeeper</groupId>
  37. <artifactId>zookeeper</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.curator</groupId>
  42. <artifactId>curator-recipes</artifactId>
  43. <version>${apache-curator-version}</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.apache.zookeeper</groupId>
  47. <artifactId>zookeeper</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.curator</groupId>
  54. <artifactId>curator-test</artifactId>
  55. <version>${apache-curator-version}</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.apache.zookeeper</groupId>
  59. <artifactId>zookeeper</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.junit.jupiter</groupId>
  66. <artifactId>junit-jupiter-engine</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>