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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. <parent>
  22. <groupId>org.apache.archiva</groupId>
  23. <artifactId>archiva-base</artifactId>
  24. <version>3.0.0-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-proxy</artifactId>
  28. <name>Archiva Base :: Proxy</name>
  29. <properties>
  30. <site.staging.base>${project.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-scheduler-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.archiva</groupId>
  43. <artifactId>archiva-repository-layer</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>log4j</groupId>
  47. <artifactId>log4j</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>commons-logging</groupId>
  51. <artifactId>commons-logging-api</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.archiva</groupId>
  57. <artifactId>archiva-filelock</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.archiva</groupId>
  61. <artifactId>archiva-repository-scanner</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.archiva</groupId>
  65. <artifactId>archiva-scheduler-repository-api</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.archiva</groupId>
  69. <artifactId>archiva-proxy-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.guava</groupId>
  77. <artifactId>guava</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-lang</groupId>
  81. <artifactId>commons-lang</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-collections4</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.ant</groupId>
  89. <artifactId>ant</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.eclipse.sisu</groupId>
  93. <artifactId>org.eclipse.sisu.plexus</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.google.inject</groupId>
  97. <artifactId>guice</artifactId>
  98. <classifier>no_aop</classifier>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.archiva</groupId>
  102. <artifactId>archiva-plexus-bridge</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.archiva.redback.components.registry</groupId>
  106. <artifactId>spring-registry-commons</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>xmlunit</groupId>
  111. <artifactId>xmlunit</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.maven.wagon</groupId>
  116. <artifactId>wagon-http</artifactId>
  117. <scope>test</scope>
  118. <exclusions>
  119. <exclusion>
  120. <groupId>commons-logging</groupId>
  121. <artifactId>commons-logging</artifactId>
  122. </exclusion>
  123. </exclusions>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.maven.wagon</groupId>
  127. <artifactId>wagon-http-lightweight</artifactId>
  128. <scope>provided</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.archiva</groupId>
  132. <artifactId>archiva-test-utils</artifactId>
  133. <version>${project.version}</version>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.archiva</groupId>
  138. <artifactId>archiva-mock</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.archiva.redback</groupId>
  143. <artifactId>redback-rbac-cached</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.derby</groupId>
  148. <artifactId>derby</artifactId>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.archiva</groupId>
  153. <artifactId>archiva-security-common</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.archiva.redback</groupId>
  157. <artifactId>redback-common-test-resources</artifactId>
  158. <scope>test</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>xerces</groupId>
  162. <artifactId>xercesImpl</artifactId>
  163. <scope>test</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.assertj</groupId>
  167. <artifactId>assertj-core</artifactId>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.hsqldb</groupId>
  172. <artifactId>hsqldb</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. <!-- START Needed for JDK >= 9 -->
  176. <dependency>
  177. <groupId>javax.annotation</groupId>
  178. <artifactId>javax.annotation-api</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>javax.xml.bind</groupId>
  183. <artifactId>jaxb-api</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. <!-- END Needed for JDK >= 9 -->
  187. <dependency>
  188. <groupId>org.ow2.asm</groupId>
  189. <artifactId>asm</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. </dependencies>
  193. <build>
  194. <plugins>
  195. <plugin>
  196. <groupId>org.apache.maven.plugins</groupId>
  197. <artifactId>maven-surefire-plugin</artifactId>
  198. <configuration>
  199. <systemPropertyVariables>
  200. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  201. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  202. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  203. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  204. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  205. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  206. <http.proxyHost />
  207. <http.proxyPort />
  208. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  209. </systemPropertyVariables>
  210. </configuration>
  211. </plugin>
  212. </plugins>
  213. <pluginManagement>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.apache.rat</groupId>
  217. <artifactId>apache-rat-plugin</artifactId>
  218. <configuration>
  219. <excludes>
  220. <exclude>src/test/repositories/**</exclude>
  221. </excludes>
  222. </configuration>
  223. </plugin>
  224. </plugins>
  225. </pluginManagement>
  226. </build>
  227. </project>