pom.xml 3.2 KB

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