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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?xml version="1.0"?>
  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"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>org.apache.archiva.maven</groupId>
  25. <artifactId>archiva-maven</artifactId>
  26. <version>3.0.0-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>archiva-maven-proxy</artifactId>
  29. <name>Archiva :: Maven :: Proxy</name>
  30. <properties>
  31. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.apache.archiva.maven</groupId>
  36. <artifactId>archiva-maven-common</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.archiva</groupId>
  40. <artifactId>archiva-proxy</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>jakarta.servlet</groupId>
  44. <artifactId>jakarta.servlet-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.archiva</groupId>
  48. <artifactId>archiva-storage-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.archiva</groupId>
  52. <artifactId>archiva-storage-fs</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.archiva</groupId>
  56. <artifactId>archiva-policies</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.archiva.components.registry</groupId>
  60. <artifactId>archiva-components-spring-registry-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.archiva</groupId>
  64. <artifactId>archiva-repository-api</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.archiva</groupId>
  68. <artifactId>archiva-repository-layer</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.archiva</groupId>
  72. <artifactId>archiva-proxy-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.archiva</groupId>
  76. <artifactId>archiva-model</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.archiva.configuration</groupId>
  80. <artifactId>archiva-configuration-provider</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.archiva</groupId>
  84. <artifactId>archiva-scheduler-repository-api</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.archiva</groupId>
  88. <artifactId>archiva-common</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.archiva</groupId>
  92. <artifactId>metadata-model</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.archiva</groupId>
  96. <artifactId>archiva-filelock</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.archiva.components</groupId>
  100. <artifactId>archiva-components-spring-taskqueue</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.maven.wagon</groupId>
  104. <artifactId>wagon-provider-api</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.commons</groupId>
  108. <artifactId>commons-lang3</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>commons-io</groupId>
  112. <artifactId>commons-io</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>jakarta.inject</groupId>
  116. <artifactId>jakarta.inject-api</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>jakarta.annotation</groupId>
  120. <artifactId>jakarta.annotation-api</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>jakarta.xml.bind</groupId>
  124. <artifactId>jakarta.xml.bind-api</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-context</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework</groupId>
  132. <artifactId>spring-test</artifactId>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.ehcache</groupId>
  137. <artifactId>ehcache</artifactId>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.maven.wagon</groupId>
  142. <artifactId>wagon-file</artifactId>
  143. <scope>test</scope>
  144. </dependency>
  145. <!-- currently these are runtime as it's declared in the spring context
  146. file, but is it necessary? -->
  147. <dependency>
  148. <groupId>org.apache.maven.wagon</groupId>
  149. <artifactId>wagon-http-lightweight</artifactId>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.maven.wagon</groupId>
  154. <artifactId>wagon-http</artifactId>
  155. <scope>test</scope>
  156. <exclusions>
  157. <exclusion>
  158. <groupId>commons-logging</groupId>
  159. <artifactId>commons-logging</artifactId>
  160. </exclusion>
  161. </exclusions>
  162. </dependency>
  163. <!-- Test scope -->
  164. <dependency>
  165. <groupId>org.mockito</groupId>
  166. <artifactId>mockito-core</artifactId>
  167. <scope>test</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>jakarta.persistence</groupId>
  171. <artifactId>jakarta.persistence-api</artifactId>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.archiva.components</groupId>
  176. <artifactId>archiva-components-spring-quartz</artifactId>
  177. <scope>test</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.archiva.maven</groupId>
  181. <artifactId>archiva-maven-metadata</artifactId>
  182. <scope>test</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.xmlunit</groupId>
  186. <artifactId>xmlunit-core</artifactId>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>jakarta.transaction</groupId>
  191. <artifactId>jakarta.transaction-api</artifactId>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.archiva.redback</groupId>
  196. <artifactId>redback-common-jpa</artifactId>
  197. <scope>test</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.openjpa</groupId>
  201. <artifactId>openjpa</artifactId>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.eclipse.jetty</groupId>
  206. <artifactId>jetty-server</artifactId>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.archiva</groupId>
  211. <artifactId>archiva-test-utils</artifactId>
  212. <scope>test</scope>
  213. </dependency>
  214. </dependencies>
  215. <build>
  216. <pluginManagement>
  217. <plugins>
  218. <plugin>
  219. <groupId>org.apache.rat</groupId>
  220. <artifactId>apache-rat-plugin</artifactId>
  221. <configuration>
  222. <excludes>
  223. <exclude>src/test/repositories/**</exclude>
  224. </excludes>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. </pluginManagement>
  229. <plugins>
  230. <plugin>
  231. <groupId>org.apache.maven.plugins</groupId>
  232. <artifactId>maven-surefire-plugin</artifactId>
  233. <configuration>
  234. <systemPropertyVariables>
  235. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  236. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  237. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  238. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  239. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  240. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  241. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  242. </systemPropertyVariables>
  243. </configuration>
  244. </plugin>
  245. </plugins>
  246. </build>
  247. </project>