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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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. <!--
  34. <dependency>
  35. <groupId>org.apache.archiva</groupId>
  36. <artifactId>archiva-repository-admin-api</artifactId>
  37. </dependency>
  38. -->
  39. <dependency>
  40. <groupId>org.apache.archiva</groupId>
  41. <artifactId>archiva-common</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.archiva</groupId>
  45. <artifactId>archiva-repository-layer</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.archiva</groupId>
  49. <artifactId>archiva-proxy-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.archiva.maven</groupId>
  53. <artifactId>archiva-maven-common</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.archiva</groupId>
  57. <artifactId>archiva-storage-api</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.archiva</groupId>
  61. <artifactId>archiva-storage-fs</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.archiva</groupId>
  65. <artifactId>archiva-filelock</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.archiva</groupId>
  69. <artifactId>archiva-repository-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.archiva</groupId>
  73. <artifactId>archiva-model</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.archiva</groupId>
  77. <artifactId>archiva-configuration</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-context</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-beans</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.slf4j</groupId>
  89. <artifactId>slf4j-api</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.maven.wagon</groupId>
  93. <artifactId>wagon-provider-api</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.maven.wagon</groupId>
  97. <artifactId>wagon-http-shared</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-lang3</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.maven.indexer</groupId>
  109. <artifactId>indexer-core</artifactId>
  110. <classifier>shaded-lucene</classifier>
  111. <exclusions>
  112. <exclusion>
  113. <groupId>org.apache.lucene</groupId>
  114. <artifactId>lucene-queryparser</artifactId>
  115. </exclusion>
  116. <exclusion>
  117. <groupId>org.apache.lucene</groupId>
  118. <artifactId>lucene-analyzers-common</artifactId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. <!-- Runtime scope, because it's needed by maven classes -->
  123. <dependency>
  124. <groupId>org.eclipse.sisu</groupId>
  125. <artifactId>org.eclipse.sisu.plexus</artifactId>
  126. <scope>runtime</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>jakarta.inject</groupId>
  130. <artifactId>jakarta.inject-api</artifactId>
  131. </dependency>
  132. <!-- TEST Scope -->
  133. <dependency>
  134. <groupId>org.apache.archiva</groupId>
  135. <artifactId>archiva-proxy</artifactId>
  136. <scope>test</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.archiva.maven</groupId>
  140. <artifactId>archiva-maven-proxy</artifactId>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.maven.wagon</groupId>
  145. <artifactId>wagon-http</artifactId>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.archiva</groupId>
  150. <artifactId>archiva-scheduler-repository</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework</groupId>
  155. <artifactId>spring-test</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>jakarta.persistence</groupId>
  160. <artifactId>jakarta.persistence-api</artifactId>
  161. <scope>test</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.archiva</groupId>
  165. <artifactId>repository-statistics</artifactId>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.easymock</groupId>
  170. <artifactId>easymock</artifactId>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.archiva.redback</groupId>
  175. <artifactId>redback-common-jpa</artifactId>
  176. <version>${redback.version}</version>
  177. <scope>test</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>jakarta.transaction</groupId>
  181. <artifactId>jakarta.transaction-api</artifactId>
  182. <scope>test</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework</groupId>
  186. <artifactId>spring-tx</artifactId>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.springframework</groupId>
  191. <artifactId>spring-orm</artifactId>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.openjpa</groupId>
  196. <artifactId>openjpa</artifactId>
  197. <scope>test</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.archiva</groupId>
  201. <artifactId>archiva-mock</artifactId>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.apache.archiva.maven</groupId>
  206. <artifactId>archiva-maven-repository</artifactId>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.archiva</groupId>
  211. <artifactId>archiva-test-utils</artifactId>
  212. <version>${project.version}</version>
  213. <scope>test</scope>
  214. <exclusions>
  215. <exclusion>
  216. <groupId>org.slf4j</groupId>
  217. <artifactId>slf4j-simple</artifactId>
  218. </exclusion>
  219. </exclusions>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.apache.archiva.redback</groupId>
  223. <artifactId>redback-keys-memory</artifactId>
  224. <scope>test</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.archiva.redback</groupId>
  228. <artifactId>redback-rbac-cached</artifactId>
  229. <scope>test</scope>
  230. </dependency>
  231. <dependency>
  232. <groupId>org.apache.archiva.redback</groupId>
  233. <artifactId>redback-rbac-memory</artifactId>
  234. <scope>test</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.apache.archiva.redback</groupId>
  238. <artifactId>redback-users-memory</artifactId>
  239. <scope>test</scope>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.archiva.redback</groupId>
  243. <artifactId>redback-common-test-resources</artifactId>
  244. <scope>test</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.apache.maven.wagon</groupId>
  248. <artifactId>wagon-file</artifactId>
  249. <scope>test</scope>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.apache.maven.wagon</groupId>
  253. <artifactId>wagon-http-lightweight</artifactId>
  254. <scope>test</scope>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.maven</groupId>
  258. <artifactId>maven-core</artifactId>
  259. <scope>test</scope>
  260. <exclusions>
  261. <exclusion>
  262. <groupId>org.sonatype.sisu</groupId>
  263. <artifactId>sisu-guava</artifactId>
  264. </exclusion>
  265. <exclusion>
  266. <groupId>org.sonatype.sisu</groupId>
  267. <artifactId>sisu-inject</artifactId>
  268. </exclusion>
  269. <exclusion>
  270. <groupId>org.sonatype.sisu</groupId>
  271. <artifactId>sisu-guice</artifactId>
  272. </exclusion>
  273. </exclusions>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.apache.logging.log4j</groupId>
  277. <artifactId>log4j-slf4j-impl</artifactId>
  278. <scope>test</scope>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.logging.log4j</groupId>
  282. <artifactId>log4j-jcl</artifactId>
  283. <scope>test</scope>
  284. </dependency>
  285. </dependencies>
  286. <build>
  287. <pluginManagement>
  288. <plugins>
  289. <plugin>
  290. <groupId>org.apache.rat</groupId>
  291. <artifactId>apache-rat-plugin</artifactId>
  292. <configuration>
  293. <excludes>
  294. <exclude>src/test/maven-search-test-repo*/**</exclude>
  295. <exclude>src/test/repo-release*/**</exclude>
  296. </excludes>
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </pluginManagement>
  301. <plugins>
  302. <plugin>
  303. <groupId>org.apache.maven.plugins</groupId>
  304. <artifactId>maven-surefire-plugin</artifactId>
  305. <configuration>
  306. <systemPropertyVariables>
  307. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  308. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  309. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  310. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  311. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  312. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  313. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  314. </systemPropertyVariables>
  315. </configuration>
  316. </plugin>
  317. </plugins>
  318. </build>
  319. </project>