pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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"
  13. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  14. <parent>
  15. <groupId>org.apache.ambari</groupId>
  16. <artifactId>ambari-project</artifactId>
  17. <version>1.0.3-SNAPSHOT</version>
  18. <relativePath>../ambari-project</relativePath>
  19. </parent>
  20. <modelVersion>4.0.0</modelVersion>
  21. <groupId>org.apache.ambari</groupId>
  22. <artifactId>ambari-server</artifactId>
  23. <packaging>jar</packaging>
  24. <name>Ambari Server</name>
  25. <version>1.0.3-SNAPSHOT</version>
  26. <description>Ambari Server</description>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-assembly-plugin</artifactId>
  31. <configuration>
  32. <descriptors>
  33. <descriptor>src/main/assemblies/server.xml</descriptor>
  34. </descriptors>
  35. </configuration>
  36. <executions>
  37. <execution>
  38. <id>build-tarball</id>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>single</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.rat</groupId>
  48. <artifactId>apache-rat-plugin</artifactId>
  49. <configuration>
  50. <includes>
  51. <include>pom.xml</include>
  52. </includes>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <profiles>
  58. </profiles>
  59. <dependencies>
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.google.inject</groupId>
  66. <artifactId>guice</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.inject.extensions</groupId>
  70. <artifactId>guice-assistedinject</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.inject.extensions</groupId>
  74. <artifactId>guice-persist</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.google.inject.extensions</groupId>
  78. <artifactId>guice-servlet</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.derby</groupId>
  82. <artifactId>derby</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-core</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.security</groupId>
  90. <artifactId>spring-security-config</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.security</groupId>
  94. <artifactId>spring-security-web</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.security</groupId>
  98. <artifactId>spring-security-ldap</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.ldap</groupId>
  102. <artifactId>spring-ldap-core</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.directory.server</groupId>
  106. <artifactId>apacheds-all</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.slf4j</groupId>
  110. <artifactId>slf4j-api</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.slf4j</groupId>
  114. <artifactId>slf4j-log4j12</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>log4j</groupId>
  118. <artifactId>log4j</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.eclipse.persistence</groupId>
  122. <artifactId>eclipselink</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>postgresql</groupId>
  126. <artifactId>postgresql</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.mockito</groupId>
  130. <artifactId>mockito-core</artifactId>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.mortbay.jetty</groupId>
  135. <artifactId>jetty</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-logging</groupId>
  139. <artifactId>commons-logging</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-codec</groupId>
  143. <artifactId>commons-codec</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-lang</groupId>
  147. <artifactId>commons-lang</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>commons-httpclient</groupId>
  151. <artifactId>commons-httpclient</artifactId>
  152. </dependency>
  153. <dependency>
  154. <groupId>javax.servlet</groupId>
  155. <artifactId>servlet-api</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.sun.jersey</groupId>
  159. <artifactId>jersey-json</artifactId>
  160. <exclusions>
  161. <exclusion>
  162. <groupId>org.codehaus.jackson</groupId>
  163. <artifactId>jackson-xc</artifactId>
  164. </exclusion>
  165. <exclusion>
  166. <groupId>org.codehaus.jettison</groupId>
  167. <artifactId>jettison</artifactId>
  168. </exclusion>
  169. <exclusion>
  170. <groupId>org.codehaus.jackson</groupId>
  171. <artifactId>jackson-mapper-asl</artifactId>
  172. </exclusion>
  173. </exclusions>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.sun.jersey</groupId>
  177. <artifactId>jersey-server</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.sun.jersey</groupId>
  181. <artifactId>jersey-client</artifactId>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.sun.jersey.contribs</groupId>
  185. <artifactId>jersey-multipart</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.sun.jersey.contribs</groupId>
  189. <artifactId>jersey-guice</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.codehaus.jackson</groupId>
  193. <artifactId>jackson-core-asl</artifactId>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.codehaus.jackson</groupId>
  197. <artifactId>jackson-jaxrs</artifactId>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.codehaus.jackson</groupId>
  201. <artifactId>jackson-xc</artifactId>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  205. <artifactId>jersey-test-framework-core</artifactId>
  206. <scope>test</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  210. <artifactId>jersey-test-framework-grizzly2</artifactId>
  211. <scope>test</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.codehaus.jettison</groupId>
  215. <artifactId>jettison</artifactId>
  216. <scope>test</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>junit</groupId>
  220. <artifactId>junit</artifactId>
  221. <scope>test</scope>
  222. </dependency>
  223. </dependencies>
  224. </project>