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 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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.archiva</groupId>
  43. <artifactId>archiva-storage-api</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.archiva</groupId>
  47. <artifactId>archiva-storage-fs</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.archiva</groupId>
  51. <artifactId>archiva-repository-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.archiva</groupId>
  55. <artifactId>archiva-repository-layer</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.archiva</groupId>
  59. <artifactId>archiva-filelock</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.archiva</groupId>
  63. <artifactId>archiva-proxy-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.archiva</groupId>
  67. <artifactId>archiva-common</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.archiva</groupId>
  71. <artifactId>metadata-repository-api</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.archiva</groupId>
  75. <artifactId>metadata-model</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva</groupId>
  79. <artifactId>metadata-statistics-api</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.archiva</groupId>
  83. <artifactId>archiva-scheduler-repository-api</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.archiva</groupId>
  87. <artifactId>archiva-repository-admin-api</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.archiva.redback</groupId>
  91. <artifactId>redback-users-api</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.archiva.redback</groupId>
  95. <artifactId>redback-configuration</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.archiva.redback</groupId>
  99. <artifactId>redback-rbac-role-manager</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.archiva.components.cache</groupId>
  103. <artifactId>archiva-components-spring-cache-api</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.archiva.components.registry</groupId>
  107. <artifactId>archiva-components-spring-registry-api</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.archiva.components</groupId>
  111. <artifactId>archiva-components-spring-quartz</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.archiva.components</groupId>
  115. <artifactId>archiva-components-spring-taskqueue</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>jakarta.annotation</groupId>
  119. <artifactId>jakarta.annotation-api</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>jakarta.inject</groupId>
  123. <artifactId>jakarta.inject-api</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework</groupId>
  127. <artifactId>spring-core</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-beans</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework</groupId>
  135. <artifactId>spring-context</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.commons</groupId>
  139. <artifactId>commons-lang3</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.commons</groupId>
  143. <artifactId>commons-collections4</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.modelmapper</groupId>
  147. <artifactId>modelmapper</artifactId>
  148. </dependency>
  149. <!-- Used by spring configuration -->
  150. <dependency>
  151. <groupId>org.apache.archiva</groupId>
  152. <artifactId>repository-statistics</artifactId>
  153. <scope>runtime</scope>
  154. </dependency>
  155. <!-- Test scope -->
  156. <dependency>
  157. <groupId>org.apache.archiva</groupId>
  158. <artifactId>archiva-proxy</artifactId>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.archiva.maven</groupId>
  163. <artifactId>archiva-maven-proxy</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.maven.wagon</groupId>
  168. <artifactId>wagon-http</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.maven.wagon</groupId>
  173. <artifactId>wagon-http-lightweight</artifactId>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>jakarta.persistence</groupId>
  178. <artifactId>jakarta.persistence-api</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.maven.wagon</groupId>
  183. <artifactId>wagon-http-shared</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.maven.wagon</groupId>
  188. <artifactId>wagon-provider-api</artifactId>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.archiva.maven</groupId>
  193. <artifactId>archiva-maven-common</artifactId>
  194. <scope>test</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.maven.indexer</groupId>
  198. <artifactId>indexer-core</artifactId>
  199. <classifier>shaded-lucene</classifier>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.archiva.maven</groupId>
  204. <artifactId>archiva-maven-repository</artifactId>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.springframework</groupId>
  209. <artifactId>spring-test</artifactId>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>jakarta.transaction</groupId>
  214. <artifactId>jakarta.transaction-api</artifactId>
  215. <scope>test</scope>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.springframework</groupId>
  219. <artifactId>spring-context-support</artifactId>
  220. <scope>test</scope>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.openjpa</groupId>
  224. <artifactId>openjpa</artifactId>
  225. <scope>test</scope>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.archiva.redback</groupId>
  229. <artifactId>redback-rbac-jpa</artifactId>
  230. <scope>test</scope>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.archiva.redback</groupId>
  234. <artifactId>redback-common-jpa</artifactId>
  235. <scope>test</scope>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.archiva.components.registry</groupId>
  239. <artifactId>archiva-components-spring-registry-commons</artifactId>
  240. <scope>test</scope>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.archiva</groupId>
  244. <artifactId>archiva-test-utils</artifactId>
  245. <scope>test</scope>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.logging.log4j</groupId>
  249. <artifactId>log4j-slf4j-impl</artifactId>
  250. <scope>test</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.archiva.redback</groupId>
  254. <artifactId>redback-users-memory</artifactId>
  255. <scope>test</scope>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.archiva.redback</groupId>
  259. <artifactId>redback-keys-memory</artifactId>
  260. <scope>test</scope>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.archiva.redback</groupId>
  264. <artifactId>redback-rbac-cached</artifactId>
  265. <scope>test</scope>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.logging.log4j</groupId>
  269. <artifactId>log4j-jcl</artifactId>
  270. <scope>test</scope>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.archiva.redback</groupId>
  274. <artifactId>redback-common-test-resources</artifactId>
  275. <scope>test</scope>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.archiva</groupId>
  279. <artifactId>archiva-mock</artifactId>
  280. <scope>test</scope>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.hsqldb</groupId>
  284. <artifactId>hsqldb</artifactId>
  285. <scope>test</scope>
  286. </dependency>
  287. </dependencies>
  288. <build>
  289. <plugins>
  290. <plugin>
  291. <groupId>org.apache.maven.plugins</groupId>
  292. <artifactId>maven-surefire-plugin</artifactId>
  293. <configuration>
  294. <systemPropertyVariables>
  295. <basedir>${basedir}</basedir>
  296. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  297. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  298. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  299. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  300. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  301. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  302. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  303. </systemPropertyVariables>
  304. </configuration>
  305. </plugin>
  306. </plugins>
  307. </build>
  308. </project>