pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-contrib</artifactId>
  29. <packaging>pom</packaging>
  30. <name>Apache ZooKeeper - Contrib</name>
  31. <description>
  32. Contrib projects to Apache ZooKeeper
  33. </description>
  34. <properties>
  35. <spotbugs.skip>true</spotbugs.skip>
  36. </properties>
  37. <profiles>
  38. <profile>
  39. <id>full-build</id>
  40. <modules>
  41. <module>zookeeper-contrib-fatjar</module>
  42. <module>zookeeper-contrib-loggraph</module>
  43. <module>zookeeper-contrib-rest</module>
  44. <module>zookeeper-contrib-zooinspector</module>
  45. </modules>
  46. </profile>
  47. <profile>
  48. <id>fatjar</id>
  49. <modules>
  50. <module>zookeeper-contrib-fatjar</module>
  51. </modules>
  52. </profile>
  53. </profiles>
  54. <build>
  55. <pluginManagement>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <configuration>
  61. <!-- no additional args for contrib -->
  62. <compilerArgs>
  63. <compilerArg>-Xlint:none</compilerArg>
  64. </compilerArgs>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-checkstyle-plugin</artifactId>
  70. <configuration>
  71. <configLocation>checkstyle-simple.xml</configLocation>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </pluginManagement>
  76. </build>
  77. </project>