You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <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">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.archiva</groupId>
  24. <artifactId>archiva-repository-admin</artifactId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>archiva-repository-admin-default</artifactId>
  28. <name>Archiva Base :: Repository Admin Default</name>
  29. <properties>
  30. <site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.apache.archiva</groupId>
  35. <artifactId>archiva-configuration</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.archiva</groupId>
  39. <artifactId>archiva-security-common</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.maven.indexer</groupId>
  43. <artifactId>indexer-core</artifactId>
  44. <classifier>shaded-lucene</classifier>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.google.guava</groupId>
  48. <artifactId>guava</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.maven.archetype</groupId>
  52. <artifactId>archetype-common</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.archiva</groupId>
  56. <artifactId>archiva-scheduler-repository-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.archiva</groupId>
  60. <artifactId>archiva-repository-admin-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.archiva</groupId>
  64. <artifactId>archiva-plexus-bridge</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.archiva</groupId>
  68. <artifactId>metadata-repository-api</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.archiva</groupId>
  72. <artifactId>repository-statistics</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.archiva</groupId>
  76. <artifactId>metadata-model</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.archiva.maven</groupId>
  80. <artifactId>archiva-maven-repository</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>javax.inject</groupId>
  84. <artifactId>javax.inject</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.archiva.redback.components</groupId>
  88. <artifactId>spring-taskqueue</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.modelmapper</groupId>
  92. <artifactId>modelmapper</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.maven.wagon</groupId>
  96. <artifactId>wagon-http</artifactId>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>commons-logging</groupId>
  100. <artifactId>commons-logging</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.maven.wagon</groupId>
  106. <artifactId>wagon-http-lightweight</artifactId>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpclient</artifactId>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>commons-logging</groupId>
  115. <artifactId>commons-logging</artifactId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.archiva</groupId>
  121. <artifactId>archiva-test-utils</artifactId>
  122. <version>${project.version}</version>
  123. <scope>test</scope>
  124. <exclusions>
  125. <exclusion>
  126. <groupId>org.slf4j</groupId>
  127. <artifactId>slf4j-simple</artifactId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-context-support</artifactId>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>commons-logging</groupId>
  137. <artifactId>commons-logging</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring-context</artifactId>
  144. <exclusions>
  145. <exclusion>
  146. <groupId>commons-logging</groupId>
  147. <artifactId>commons-logging</artifactId>
  148. </exclusion>
  149. </exclusions>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.slf4j</groupId>
  153. <artifactId>slf4j-api</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>commons-validator</groupId>
  157. <artifactId>commons-validator</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>oro</groupId>
  161. <artifactId>oro</artifactId>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.archiva.redback.components</groupId>
  165. <artifactId>spring-quartz</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.archiva.redback</groupId>
  169. <artifactId>redback-rbac-role-manager</artifactId>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>commons-logging</groupId>
  173. <artifactId>commons-logging</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.archiva.redback</groupId>
  179. <artifactId>redback-authentication-api</artifactId>
  180. <exclusions>
  181. <exclusion>
  182. <groupId>commons-logging</groupId>
  183. <artifactId>commons-logging</artifactId>
  184. </exclusion>
  185. </exclusions>
  186. </dependency>
  187. <dependency>
  188. <groupId>junit</groupId>
  189. <artifactId>junit</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.logging.log4j</groupId>
  194. <artifactId>log4j-1.2-api</artifactId>
  195. <scope>test</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.logging.log4j</groupId>
  199. <artifactId>log4j-slf4j-impl</artifactId>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.archiva.redback</groupId>
  204. <artifactId>redback-users-memory</artifactId>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.archiva.redback</groupId>
  209. <artifactId>redback-keys-memory</artifactId>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.archiva.redback</groupId>
  214. <artifactId>redback-rbac-cached</artifactId>
  215. <scope>test</scope>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>commons-logging</groupId>
  219. <artifactId>commons-logging</artifactId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.derby</groupId>
  225. <artifactId>derby</artifactId>
  226. <scope>test</scope>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.logging.log4j</groupId>
  230. <artifactId>log4j-jcl</artifactId>
  231. <scope>test</scope>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.archiva.redback</groupId>
  235. <artifactId>redback-common-test-resources</artifactId>
  236. <scope>test</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>xerces</groupId>
  240. <artifactId>xercesImpl</artifactId>
  241. <scope>test</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.apache.archiva</groupId>
  245. <artifactId>archiva-mock</artifactId>
  246. <scope>test</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.hsqldb</groupId>
  250. <artifactId>hsqldb</artifactId>
  251. <scope>test</scope>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.ow2.asm</groupId>
  255. <artifactId>asm</artifactId>
  256. <scope>test</scope>
  257. </dependency>
  258. </dependencies>
  259. <build>
  260. <plugins>
  261. <plugin>
  262. <groupId>org.apache.maven.plugins</groupId>
  263. <artifactId>maven-surefire-plugin</artifactId>
  264. <configuration>
  265. <systemPropertyVariables>
  266. <basedir>${basedir}</basedir>
  267. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  268. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  269. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  270. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  271. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  272. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  273. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  274. </systemPropertyVariables>
  275. </configuration>
  276. </plugin>
  277. </plugins>
  278. </build>
  279. </project>