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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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-configuration</artifactId>
  28. <name>Archiva Base :: Configuration</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-common</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.archiva</groupId>
  39. <artifactId>archiva-policies</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.archiva.components.registry</groupId>
  43. <artifactId>archiva-components-spring-registry-api</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-test</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-context</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>commons-logging</groupId>
  57. <artifactId>commons-logging</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.archiva.components.registry</groupId>
  63. <artifactId>archiva-components-spring-registry-commons</artifactId>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-test</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.archiva.components</groupId>
  73. <artifactId>archiva-components-expression-evaluator</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-configuration</groupId>
  77. <artifactId>commons-configuration</artifactId>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>commons-beanutils</groupId>
  81. <artifactId>commons-beanutils-core</artifactId>
  82. </exclusion>
  83. <!-- targeting JDK 1.4, xml parser/apis not needed -->
  84. <exclusion>
  85. <groupId>xerces</groupId>
  86. <artifactId>xerces</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>xerces</groupId>
  90. <artifactId>xercesImpl</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>xalan</groupId>
  94. <artifactId>xalan</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>xml-apis</groupId>
  98. <artifactId>xml-apis</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>servletapi</groupId>
  102. <artifactId>servletapi</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>commons-logging</groupId>
  106. <artifactId>commons-logging</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>ant</groupId>
  110. <artifactId>ant-optional</artifactId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-collections</groupId>
  116. <artifactId>commons-collections</artifactId>
  117. <version>3.2.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-lang3</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-collections4</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>javax.inject</groupId>
  133. <artifactId>javax.inject</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.slf4j</groupId>
  137. <artifactId>slf4j-api</artifactId>
  138. </dependency>
  139. <!-- Test scope -->
  140. <dependency>
  141. <groupId>commons-beanutils</groupId>
  142. <artifactId>commons-beanutils</artifactId>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.archiva</groupId>
  147. <artifactId>archiva-test-utils</artifactId>
  148. <version>${project.version}</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-test</artifactId>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.logging.log4j</groupId>
  158. <artifactId>log4j-jcl</artifactId>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.archiva.components.cache</groupId>
  163. <artifactId>archiva-components-spring-cache-ehcache</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. </dependencies>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-surefire-plugin</artifactId>
  172. <configuration>
  173. <systemPropertyVariables>
  174. <basedir>${basedir}</basedir>
  175. </systemPropertyVariables>
  176. <trimStackTrace>false</trimStackTrace>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. <pluginManagement>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.apache.rat</groupId>
  184. <artifactId>apache-rat-plugin</artifactId>
  185. <configuration>
  186. <excludes>
  187. <exclude>src/main/resources/org/apache/archiva/configuration/default-archiva.xml</exclude>
  188. <exclude>src/test/conf/maven-proxy-complete.conf</exclude>
  189. <exclude>src/test/resources/org/apache/archiva/configuration/test-default-archiva.xml</exclude>
  190. <exclude>nbactions.xml</exclude>
  191. </excludes>
  192. </configuration>
  193. </plugin>
  194. </plugins>
  195. </pluginManagement>
  196. </build>
  197. </project>