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

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