pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>parent</artifactId>
  25. <version>3.10.0-SNAPSHOT</version>
  26. </parent>
  27. <packaging>pom</packaging>
  28. <modelVersion>4.0.0</modelVersion>
  29. <artifactId>zookeeper-compatibility-tests</artifactId>
  30. <modules>
  31. <module>zookeeper-compatibility-tests-curator</module>
  32. </modules>
  33. <name>Apache ZooKeeper - Compatibility Tests</name>
  34. <description>Module for various compatibility tests</description>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-install-plugin</artifactId>
  40. <configuration>
  41. <skip>true</skip>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-deploy-plugin</artifactId>
  47. <configuration>
  48. <skip>true</skip>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>