pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?xml version="1.0"?>
  2. <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
  3. license agreements. See the NOTICE file distributed with this work for additional
  4. information regarding copyright ownership. The ASF licenses this file to
  5. You under the Apache License, Version 2.0 (the "License"); you may not use
  6. this file except in compliance with the License. You may obtain a copy of
  7. the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
  8. by applicable law or agreed to in writing, software distributed under the
  9. License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
  10. OF ANY KIND, either express or implied. See the License for the specific
  11. language governing permissions and limitations under the License. -->
  12. <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">
  13. <parent>
  14. <groupId>org.apache.ambari</groupId>
  15. <artifactId>ambari-project</artifactId>
  16. <version>1.0.3-SNAPSHOT</version>
  17. <relativePath>../ambari-project</relativePath>
  18. </parent>
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>org.apache.ambari</groupId>
  21. <artifactId>ambari-server</artifactId>
  22. <packaging>jar</packaging>
  23. <name>Ambari Server</name>
  24. <version>1.0.3-SNAPSHOT</version>
  25. <description>Ambari Server</description>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <artifactId>maven-assembly-plugin</artifactId>
  30. <configuration>
  31. <descriptors>
  32. <descriptor>src/main/assemblies/server.xml</descriptor>
  33. </descriptors>
  34. </configuration>
  35. <executions>
  36. <execution>
  37. <id>build-tarball</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>single</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.apache.rat</groupId>
  47. <artifactId>apache-rat-plugin</artifactId>
  48. <configuration>
  49. <includes>
  50. <include>pom.xml</include>
  51. </includes>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. <profiles>
  57. </profiles>
  58. <dependencies>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.inject</groupId>
  65. <artifactId>guice</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.inject.extensions</groupId>
  69. <artifactId>guice-assistedinject</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.inject.extensions</groupId>
  73. <artifactId>guice-persist</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.inject.extensions</groupId>
  77. <artifactId>guice-servlet</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.derby</groupId>
  81. <artifactId>derby</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.security</groupId>
  85. <artifactId>spring-security-core</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.security</groupId>
  89. <artifactId>spring-security-config</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.security</groupId>
  93. <artifactId>spring-security-web</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.security</groupId>
  97. <artifactId>spring-security-ldap</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.ldap</groupId>
  101. <artifactId>spring-ldap-core</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.directory.server</groupId>
  105. <artifactId>apacheds-all</artifactId>
  106. </dependency>
  107. <!--<dependency>-->
  108. <!--<groupId>org.apache.directory.shared</groupId>-->
  109. <!--<artifactId>shared-ldap</artifactId>-->
  110. <!--</dependency>-->
  111. <dependency>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>slf4j-api</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.slf4j</groupId>
  117. <artifactId>slf4j-log4j12</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>log4j</groupId>
  121. <artifactId>log4j</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.eclipse.persistence</groupId>
  125. <artifactId>eclipselink</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>postgresql</groupId>
  129. <artifactId>postgresql</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.mockito</groupId>
  133. <artifactId>mockito-core</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.mortbay.jetty</groupId>
  138. <artifactId>jetty</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-logging</groupId>
  142. <artifactId>commons-logging</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-codec</groupId>
  146. <artifactId>commons-codec</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-lang</groupId>
  150. <artifactId>commons-lang</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>commons-httpclient</groupId>
  154. <artifactId>commons-httpclient</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>javax.servlet</groupId>
  158. <artifactId>servlet-api</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.sun.jersey</groupId>
  162. <artifactId>jersey-json</artifactId>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.sun.jersey</groupId>
  166. <artifactId>jersey-server</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.sun.jersey</groupId>
  170. <artifactId>jersey-client</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.sun.jersey.contribs</groupId>
  174. <artifactId>jersey-multipart</artifactId>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.sun.jersey.contribs</groupId>
  178. <artifactId>jersey-guice</artifactId>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  182. <artifactId>jersey-test-framework-core</artifactId>
  183. <scope>test</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  187. <artifactId>jersey-test-framework-grizzly2</artifactId>
  188. <scope>test</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>junit</groupId>
  192. <artifactId>junit</artifactId>
  193. <scope>test</scope>
  194. </dependency>
  195. </dependencies>
  196. </project>