pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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>zookeeper-contrib</artifactId>
  26. <version>3.6.0-SNAPSHOT</version>
  27. </parent>
  28. <groupId>org.apache.zookeeper</groupId>
  29. <artifactId>zookeeper-contrib-zooinspector</artifactId>
  30. <packaging>jar</packaging>
  31. <name>Apache ZooKeeper - Contrib - ZooInspector</name>
  32. <description>
  33. ZooInspector is a Java Swing based application for browsing and editing ZooKeeper instances.
  34. </description>
  35. <properties>
  36. <rat.version>0.6</rat.version>
  37. <commons-lang.version>2.4</commons-lang.version>
  38. <guava.version>18.0</guava.version>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.apache.zookeeper</groupId>
  43. <artifactId>zookeeper-server</artifactId>
  44. <version>3.6.0-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.slf4j</groupId>
  48. <artifactId>slf4j-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-log4j12</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>*</groupId>
  56. <artifactId>*</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>log4j</groupId>
  62. <artifactId>log4j</artifactId>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>*</groupId>
  66. <artifactId>*</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.guava</groupId>
  77. <artifactId>guava</artifactId>
  78. <version>${guava.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.rat</groupId>
  82. <artifactId>apache-rat-tasks</artifactId>
  83. <version>${rat.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-lang</groupId>
  87. <artifactId>commons-lang</artifactId>
  88. <version>${commons-lang.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-collections</groupId>
  92. <artifactId>commons-collections</artifactId>
  93. </dependency>
  94. </dependencies>
  95. </project>