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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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-maven2-indexer</artifactId>
  28. <name>Archiva Base :: Maven2 Indexer</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-repository-admin-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.archiva</groupId>
  39. <artifactId>archiva-common</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.archiva</groupId>
  43. <artifactId>archiva-repository-layer</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.archiva</groupId>
  47. <artifactId>archiva-proxy-common</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-context</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-context-support</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.codehaus.plexus</groupId>
  63. <artifactId>plexus-utils</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.google.guava</groupId>
  67. <artifactId>guava</artifactId>
  68. </dependency>
  69. <!--
  70. <dependency>
  71. <groupId>org.codehaus.plexus</groupId>
  72. <artifactId>plexus-digest</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>org.codehaus.plexus</groupId>
  76. <artifactId>plexus-component-api</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. -->
  81. <dependency>
  82. <groupId>commons-lang</groupId>
  83. <artifactId>commons-lang</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.maven.indexer</groupId>
  91. <artifactId>indexer-reader</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.maven.indexer</groupId>
  95. <artifactId>indexer-core</artifactId>
  96. <classifier>shaded-lucene</classifier>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>org.apache.lucene</groupId>
  100. <artifactId>lucene-queryparser</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.apache.lucene</groupId>
  104. <artifactId>lucene-analyzers-common</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.maven.wagon</groupId>
  110. <artifactId>wagon-http</artifactId>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.eclipse.sisu</groupId>
  115. <artifactId>org.eclipse.sisu.plexus</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.google.inject</groupId>
  119. <artifactId>guice</artifactId>
  120. <classifier>no_aop</classifier>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.archiva</groupId>
  124. <artifactId>archiva-plexus-bridge</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.archiva</groupId>
  128. <artifactId>archiva-scheduler-repository</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>javax.inject</groupId>
  132. <artifactId>javax.inject</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.archiva</groupId>
  136. <artifactId>archiva-mock</artifactId>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.archiva</groupId>
  141. <artifactId>archiva-repository-admin-default</artifactId>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.archiva</groupId>
  146. <artifactId>archiva-test-utils</artifactId>
  147. <version>${project.version}</version>
  148. <scope>test</scope>
  149. <exclusions>
  150. <exclusion>
  151. <groupId>org.slf4j</groupId>
  152. <artifactId>slf4j-simple</artifactId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.derby</groupId>
  158. <artifactId>derby</artifactId>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.archiva.redback</groupId>
  163. <artifactId>redback-keys-memory</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.archiva.redback</groupId>
  168. <artifactId>redback-rbac-cached</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.archiva.redback</groupId>
  173. <artifactId>redback-rbac-memory</artifactId>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.archiva.redback</groupId>
  178. <artifactId>redback-users-memory</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.archiva.redback</groupId>
  183. <artifactId>redback-common-test-resources</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.maven.wagon</groupId>
  188. <artifactId>wagon-file</artifactId>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.maven.wagon</groupId>
  193. <artifactId>wagon-http-lightweight</artifactId>
  194. <scope>provided</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>xerces</groupId>
  198. <artifactId>xercesImpl</artifactId>
  199. <scope>test</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.hsqldb</groupId>
  203. <artifactId>hsqldb</artifactId>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.archiva</groupId>
  208. <artifactId>archiva-configuration</artifactId>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.maven</groupId>
  212. <artifactId>maven-core</artifactId>
  213. <exclusions>
  214. <exclusion>
  215. <groupId>org.sonatype.sisu</groupId>
  216. <artifactId>sisu-guava</artifactId>
  217. </exclusion>
  218. <exclusion>
  219. <groupId>org.sonatype.sisu</groupId>
  220. <artifactId>sisu-inject</artifactId>
  221. </exclusion>
  222. <exclusion>
  223. <groupId>org.sonatype.sisu</groupId>
  224. <artifactId>sisu-guice</artifactId>
  225. </exclusion>
  226. </exclusions>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.logging.log4j</groupId>
  230. <artifactId>log4j-slf4j-impl</artifactId>
  231. <scope>test</scope>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.logging.log4j</groupId>
  235. <artifactId>log4j-jcl</artifactId>
  236. <scope>test</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.ow2.asm</groupId>
  240. <artifactId>asm</artifactId>
  241. <scope>test</scope>
  242. </dependency>
  243. </dependencies>
  244. <build>
  245. <pluginManagement>
  246. <plugins>
  247. <plugin>
  248. <groupId>org.apache.rat</groupId>
  249. <artifactId>apache-rat-plugin</artifactId>
  250. <configuration>
  251. <excludes>
  252. <exclude>src/test/maven-search-test-repo*/**</exclude>
  253. <exclude>src/test/repo-release*/**</exclude>
  254. </excludes>
  255. </configuration>
  256. </plugin>
  257. </plugins>
  258. </pluginManagement>
  259. <plugins>
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-surefire-plugin</artifactId>
  263. <configuration>
  264. <systemPropertyVariables>
  265. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  266. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  267. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  268. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  269. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  270. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  271. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  272. </systemPropertyVariables>
  273. </configuration>
  274. </plugin>
  275. </plugins>
  276. </build>
  277. </project>