pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>parent</artifactId>
  26. <version>3.10.0-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>zookeeper-it</artifactId>
  29. <packaging>jar</packaging>
  30. <name>Apache ZooKeeper - Tests</name>
  31. <description>
  32. ZooKeeper system tests
  33. </description>
  34. <!-- (temporarily) disable quality checks in this module for known failures to be fixed later -->
  35. <properties>
  36. <skipTests>true</skipTests>
  37. <spotbugs.skip>true</spotbugs.skip>
  38. <checkstyle.skip>true</checkstyle.skip>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.apache.zookeeper</groupId>
  43. <artifactId>zookeeper</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.zookeeper</groupId>
  48. <artifactId>zookeeper</artifactId>
  49. <classifier>tests</classifier>
  50. <type>test-jar</type>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.junit.vintage</groupId>
  55. <artifactId>junit-vintage-engine</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.openjdk.jmh</groupId>
  59. <artifactId>jmh-core</artifactId>
  60. <version>1.23</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.openjdk.jmh</groupId>
  64. <artifactId>jmh-generator-annprocess</artifactId>
  65. <version>1.23</version>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <pluginManagement>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-surefire-plugin</artifactId>
  74. <configuration>
  75. <testSourceDirectory>${project.basedir}/src/main/java/</testSourceDirectory>
  76. <testClassesDirectory>${project.build.directory}/classes/</testClassesDirectory>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </pluginManagement>
  81. </build>
  82. </project>