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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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-web</artifactId>
  24. <version>3.0.0-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-security</artifactId>
  28. <name>Archiva Web :: Security 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-configuration</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.archiva</groupId>
  39. <artifactId>archiva-repository-admin-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.archiva</groupId>
  43. <artifactId>archiva-security-common</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.inject</groupId>
  47. <artifactId>javax.inject</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.archiva.redback</groupId>
  60. <artifactId>redback-system</artifactId>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.apache.archiva.redback</groupId>
  64. <artifactId>plexus-spring</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>org.codehaus.plexus.registry</groupId>
  68. <artifactId>plexus-registry-api</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.codehaus.plexus.registry</groupId>
  72. <artifactId>plexus-registry-commons</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>net.sf.ehcache</groupId>
  76. <artifactId>ehcache</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>org.codehaus.plexus.cache</groupId>
  80. <artifactId>plexus-cache-ehcache</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>org.codehaus.plexus.cache</groupId>
  84. <artifactId>plexus-cache-api</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>org.codehaus.plexus</groupId>
  88. <artifactId>plexus-component-api</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.archiva.redback</groupId>
  94. <artifactId>redback-rbac-model</artifactId>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>org.codehaus.plexus</groupId>
  98. <artifactId>plexus-component-api</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.archiva.redback</groupId>
  104. <artifactId>redback-rbac-role-manager</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.google.guava</groupId>
  108. <artifactId>guava</artifactId>
  109. </dependency>
  110. <!-- Test Scoped -->
  111. <dependency>
  112. <groupId>org.apache.archiva.redback</groupId>
  113. <artifactId>redback-keys-jpa</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.archiva.redback</groupId>
  118. <artifactId>redback-keys-cached</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>javax.transaction</groupId>
  123. <artifactId>javax.transaction-api</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.archiva.redback</groupId>
  128. <artifactId>redback-rbac-jpa</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.archiva.redback</groupId>
  133. <artifactId>redback-authorization-rbac</artifactId>
  134. <scope>test</scope>
  135. <exclusions>
  136. <exclusion>
  137. <groupId>net.sf.ehcache</groupId>
  138. <artifactId>ehcache</artifactId>
  139. </exclusion>
  140. <exclusion>
  141. <groupId>org.codehaus.plexus.cache</groupId>
  142. <artifactId>plexus-cache-ehcache</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>org.codehaus.plexus.cache</groupId>
  146. <artifactId>plexus-cache-api</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.archiva.redback</groupId>
  152. <artifactId>redback-keys-memory</artifactId>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.archiva.redback</groupId>
  157. <artifactId>redback-users-memory</artifactId>
  158. <scope>test</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.archiva.redback</groupId>
  162. <artifactId>redback-rbac-memory</artifactId>
  163. <scope>test</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.slf4j</groupId>
  167. <artifactId>slf4j-simple</artifactId>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.archiva</groupId>
  172. <artifactId>archiva-test-utils</artifactId>
  173. <version>${project.version}</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.derby</groupId>
  178. <artifactId>derby</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework</groupId>
  183. <artifactId>spring-test</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.archiva.redback</groupId>
  188. <artifactId>redback-common-test-resources</artifactId>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.archiva</groupId>
  193. <artifactId>archiva-repository-admin-default</artifactId>
  194. <scope>test</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.maven.wagon</groupId>
  198. <artifactId>wagon-http</artifactId>
  199. <scope>test</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.maven.wagon</groupId>
  203. <artifactId>wagon-http-lightweight</artifactId>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.archiva</groupId>
  208. <artifactId>metadata-repository-api</artifactId>
  209. <scope>test</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.archiva</groupId>
  213. <artifactId>metadata-store-file</artifactId>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.archiva.maven</groupId>
  218. <artifactId>archiva-maven-indexer</artifactId>
  219. <scope>test</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.ow2.asm</groupId>
  223. <artifactId>asm</artifactId>
  224. <scope>test</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>net.sf.ehcache</groupId>
  228. <artifactId>ehcache</artifactId>
  229. <scope>test</scope>
  230. </dependency>
  231. </dependencies>
  232. <build>
  233. <plugins>
  234. <plugin>
  235. <groupId>org.apache.maven.plugins</groupId>
  236. <artifactId>maven-surefire-plugin</artifactId>
  237. <configuration>
  238. <systemPropertyVariables>
  239. <basedir>${basedir}</basedir>
  240. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  241. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  242. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  243. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  244. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  245. <archiva.repositorySessionFactory.id>file</archiva.repositorySessionFactory.id>
  246. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  247. </systemPropertyVariables>
  248. </configuration>
  249. </plugin>
  250. </plugins>
  251. </build>
  252. </project>