pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <parent>
  17. <groupId>org.apache.hadoop</groupId>
  18. <artifactId>hadoop-project</artifactId>
  19. <version>2.8.2</version>
  20. <relativePath>../../hadoop-project</relativePath>
  21. </parent>
  22. <modelVersion>4.0.0</modelVersion>
  23. <groupId>org.apache.hadoop</groupId>
  24. <artifactId>hadoop-minikdc</artifactId>
  25. <version>2.8.2</version>
  26. <description>Apache Hadoop MiniKDC</description>
  27. <name>Apache Hadoop MiniKDC</name>
  28. <packaging>jar</packaging>
  29. <dependencies>
  30. <dependency>
  31. <groupId>commons-io</groupId>
  32. <artifactId>commons-io</artifactId>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.directory.server</groupId>
  37. <artifactId>apacheds-core-api</artifactId>
  38. <version>2.0.0-M15</version>
  39. <scope>compile</scope>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.apache.directory.api</groupId>
  43. <artifactId>api-ldap-schema-data</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.directory.server</groupId>
  49. <artifactId>apacheds-interceptor-kerberos</artifactId>
  50. <version>2.0.0-M15</version>
  51. <scope>compile</scope>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.apache.directory.api</groupId>
  55. <artifactId>api-ldap-schema-data</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.directory.server</groupId>
  61. <artifactId>apacheds-protocol-shared</artifactId>
  62. <version>2.0.0-M15</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.directory.server</groupId>
  67. <artifactId>apacheds-protocol-kerberos</artifactId>
  68. <version>2.0.0-M15</version>
  69. <scope>compile</scope>
  70. <exclusions>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.directory.server</groupId>
  75. <artifactId>apacheds-ldif-partition</artifactId>
  76. <version>2.0.0-M15</version>
  77. <scope>compile</scope>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.apache.directory.api</groupId>
  81. <artifactId>api-ldap-schema-data</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.directory.server</groupId>
  87. <artifactId>apacheds-mavibot-partition</artifactId>
  88. <version>2.0.0-M15</version>
  89. <scope>compile</scope>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.apache.directory.api</groupId>
  93. <artifactId>api-ldap-schema-data</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.directory.api</groupId>
  99. <artifactId>api-all</artifactId>
  100. <version>1.0.0-M20</version>
  101. <scope>compile</scope>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>xml-apis</groupId>
  105. <artifactId>xml-apis</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>xpp3</groupId>
  109. <artifactId>xpp3</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>dom4j</groupId>
  113. <artifactId>dom4j</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.directory.server</groupId>
  119. <artifactId>apacheds-jdbm-partition</artifactId>
  120. <version>2.0.0-M15</version>
  121. <scope>compile</scope>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.apache.directory.api</groupId>
  125. <artifactId>api-ldap-schema-data</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.directory.server</groupId>
  131. <artifactId>apacheds-protocol-ldap</artifactId>
  132. <version>2.0.0-M15</version>
  133. <scope>compile</scope>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>org.apache.directory.api</groupId>
  137. <artifactId>api-ldap-schema-data</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.slf4j</groupId>
  143. <artifactId>slf4j-log4j12</artifactId>
  144. <scope>compile</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>junit</groupId>
  148. <artifactId>junit</artifactId>
  149. <scope>compile</scope>
  150. </dependency>
  151. </dependencies>
  152. </project>