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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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>jakarta.inject</groupId>
  47. <artifactId>jakarta.inject-api</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>jakarta.servlet</groupId>
  51. <artifactId>jakarta.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>net.sf.ehcache</groupId>
  64. <artifactId>ehcache</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.archiva.redback</groupId>
  70. <artifactId>redback-rbac-model</artifactId>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>org.codehaus.plexus</groupId>
  74. <artifactId>plexus-component-api</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.archiva.redback</groupId>
  80. <artifactId>redback-rbac-role-manager</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.archiva</groupId>
  84. <artifactId>archiva-xml-tools</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.archiva</groupId>
  88. <artifactId>metadata-model</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.archiva</groupId>
  92. <artifactId>archiva-common</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.archiva</groupId>
  96. <artifactId>archiva-policies</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.archiva</groupId>
  100. <artifactId>archiva-repository-api</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.archiva</groupId>
  104. <artifactId>archiva-scheduler-repository-api</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.archiva.redback</groupId>
  108. <artifactId>redback-policy</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.archiva.redback</groupId>
  112. <artifactId>redback-authentication-api</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.archiva.redback</groupId>
  116. <artifactId>redback-authorization-api</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.archiva.redback</groupId>
  120. <artifactId>redback-users-api</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.archiva.components</groupId>
  124. <artifactId>archiva-components-spring-taskqueue</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-lang3</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-context</artifactId>
  137. </dependency>
  138. <!-- Test Scoped -->
  139. <dependency>
  140. <groupId>org.apache.archiva.maven</groupId>
  141. <artifactId>archiva-maven-proxy</artifactId>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.archiva.maven</groupId>
  146. <artifactId>archiva-maven-repository</artifactId>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>jakarta.persistence</groupId>
  151. <artifactId>jakarta.persistence-api</artifactId>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.easymock</groupId>
  156. <artifactId>easymock</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.archiva.redback</groupId>
  161. <artifactId>redback-keys-jpa</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>jakarta.transaction</groupId>
  166. <artifactId>jakarta.transaction-api</artifactId>
  167. <scope>test</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.archiva.redback</groupId>
  171. <artifactId>redback-rbac-jpa</artifactId>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.archiva.redback</groupId>
  176. <artifactId>redback-authorization-rbac</artifactId>
  177. <scope>test</scope>
  178. <exclusions>
  179. <exclusion>
  180. <groupId>net.sf.ehcache</groupId>
  181. <artifactId>ehcache</artifactId>
  182. </exclusion>
  183. </exclusions>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.archiva.redback</groupId>
  187. <artifactId>redback-keys-memory</artifactId>
  188. <scope>test</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.archiva.redback</groupId>
  192. <artifactId>redback-users-memory</artifactId>
  193. <scope>test</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.archiva.redback</groupId>
  197. <artifactId>redback-rbac-memory</artifactId>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.archiva</groupId>
  202. <artifactId>archiva-test-utils</artifactId>
  203. <version>${project.version}</version>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.springframework</groupId>
  208. <artifactId>spring-test</artifactId>
  209. <scope>test</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.archiva</groupId>
  213. <artifactId>archiva-repository-admin-default</artifactId>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.archiva.redback</groupId>
  218. <artifactId>redback-common-test-resources</artifactId>
  219. <scope>test</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.apache.maven.wagon</groupId>
  223. <artifactId>wagon-http</artifactId>
  224. <scope>test</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.maven.wagon</groupId>
  228. <artifactId>wagon-http-lightweight</artifactId>
  229. <scope>test</scope>
  230. </dependency>
  231. <dependency>
  232. <groupId>org.apache.archiva</groupId>
  233. <artifactId>metadata-repository-api</artifactId>
  234. <scope>test</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.apache.archiva</groupId>
  238. <artifactId>metadata-store-file</artifactId>
  239. <scope>test</scope>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.archiva.maven</groupId>
  243. <artifactId>archiva-maven-indexer</artifactId>
  244. <scope>test</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>net.sf.ehcache</groupId>
  248. <artifactId>ehcache</artifactId>
  249. <scope>test</scope>
  250. </dependency>
  251. </dependencies>
  252. <build>
  253. <plugins>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-surefire-plugin</artifactId>
  257. <configuration>
  258. <systemPropertyVariables>
  259. <basedir>${basedir}</basedir>
  260. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  261. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  262. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  263. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  264. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  265. <archiva.repositorySessionFactory.id>file</archiva.repositorySessionFactory.id>
  266. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  267. </systemPropertyVariables>
  268. </configuration>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. </project>