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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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-plexus-bridge</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.archiva</groupId>
  44. <artifactId>archiva-repository-admin-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.maven.archetype</groupId>
  48. <artifactId>archetype-common</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.archiva</groupId>
  52. <artifactId>archiva-proxy</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.maven.wagon</groupId>
  56. <artifactId>wagon-provider-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.maven.wagon</groupId>
  60. <artifactId>wagon-file</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <!-- currently these are runtime as it's declared in the spring context
  64. file, but is it necessary? -->
  65. <dependency>
  66. <groupId>org.apache.maven.wagon</groupId>
  67. <artifactId>wagon-http-lightweight</artifactId>
  68. <scope>runtime</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.maven.wagon</groupId>
  72. <artifactId>wagon-http</artifactId>
  73. <scope>runtime</scope>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>commons-logging</groupId>
  77. <artifactId>commons-logging</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-logging</groupId>
  83. <artifactId>commons-logging</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.archiva</groupId>
  87. <artifactId>archiva-test-utils</artifactId>
  88. <version>${project.version}</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.ow2.asm</groupId>
  93. <artifactId>asm</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.eclipse.jetty</groupId>
  98. <artifactId>jetty-server</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.assertj</groupId>
  103. <artifactId>assertj-core</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.hsqldb</groupId>
  108. <artifactId>hsqldb</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.archiva.redback.components.registry</groupId>
  113. <artifactId>spring-registry-commons</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.archiva</groupId>
  118. <artifactId>archiva-test-utils</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.archiva</groupId>
  123. <artifactId>archiva-mock</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.assertj</groupId>
  128. <artifactId>assertj-core</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.hsqldb</groupId>
  133. <artifactId>hsqldb</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.archiva.redback</groupId>
  138. <artifactId>redback-rbac-cached</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.derby</groupId>
  143. <artifactId>derby</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.archiva.redback</groupId>
  148. <artifactId>redback-common-test-resources</artifactId>
  149. <scope>test</scope>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <pluginManagement>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.apache.rat</groupId>
  157. <artifactId>apache-rat-plugin</artifactId>
  158. <configuration>
  159. <excludes>
  160. <exclude>src/test/repositories/**</exclude>
  161. </excludes>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. </pluginManagement>
  166. </build>
  167. <!--
  168. The jaxb dependency is needed by the enunciate plugin starting with JDK9.
  169. Adding to the plugin dependency is not sufficient, so I have to add it as project dependency.
  170. Using provided scope to avoid adding it to packaging.
  171. -->
  172. <profiles>
  173. <profile>
  174. <id>jdk9+</id>
  175. <activation>
  176. <jdk>[1.9,)</jdk>
  177. </activation>
  178. <dependencies>
  179. <dependency>
  180. <groupId>javax.xml.bind</groupId>
  181. <artifactId>jaxb-api</artifactId>
  182. <version>2.3.0</version>
  183. <scope>provided</scope>
  184. </dependency>
  185. </dependencies>
  186. </profile>
  187. </profiles>
  188. </project>