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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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"
  21. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <modelVersion>4.0.0</modelVersion>
  24. <parent>
  25. <artifactId>archiva-maven</artifactId>
  26. <groupId>org.apache.archiva.maven</groupId>
  27. <version>3.0.0-SNAPSHOT</version>
  28. </parent>
  29. <properties>
  30. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  31. </properties>
  32. <artifactId>archiva-maven-scheduler</artifactId>
  33. <name>Archiva :: Maven :: Scheduler</name>
  34. <description>Scheduler for downloading remote Maven indexes.</description>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-context</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.archiva</groupId>
  42. <artifactId>archiva-common</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-storage-api</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.archiva</groupId>
  50. <artifactId>archiva-configuration</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.archiva</groupId>
  54. <artifactId>archiva-scheduler-indexing</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.archiva</groupId>
  58. <artifactId>archiva-repository-layer</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.archiva.maven</groupId>
  62. <artifactId>archiva-maven-common</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.archiva</groupId>
  66. <artifactId>archiva-repository-api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.archiva</groupId>
  70. <artifactId>archiva-proxy-api</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.archiva.components</groupId>
  74. <artifactId>archiva-components-spring-taskqueue</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>jakarta.annotation</groupId>
  78. <artifactId>jakarta.annotation-api</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>jakarta.inject</groupId>
  82. <artifactId>jakarta.inject-api</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>jakarta.servlet</groupId>
  86. <artifactId>jakarta.servlet-api</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.maven.indexer</groupId>
  90. <artifactId>indexer-core</artifactId>
  91. <classifier>shaded-lucene</classifier>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.maven.wagon</groupId>
  95. <artifactId>wagon-http-shared</artifactId>
  96. <scope>provided</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.maven.wagon</groupId>
  100. <artifactId>wagon-provider-api</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. </dependency>
  106. <!-- Test dependencies -->
  107. <dependency>
  108. <groupId>org.apache.archiva</groupId>
  109. <artifactId>repository-statistics</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.maven.wagon</groupId>
  114. <artifactId>wagon-http</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.maven.wagon</groupId>
  119. <artifactId>wagon-http-lightweight</artifactId>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.archiva.maven</groupId>
  124. <artifactId>archiva-maven-proxy</artifactId>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-test</artifactId>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.archiva.maven</groupId>
  134. <artifactId>archiva-maven-indexer</artifactId>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.archiva.maven</groupId>
  139. <artifactId>archiva-maven-repository</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.archiva</groupId>
  144. <artifactId>archiva-test-utils</artifactId>
  145. <version>${project.version}</version>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.eclipse.jetty</groupId>
  150. <artifactId>jetty-servlet</artifactId>
  151. <version>${jetty.version}</version>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.eclipse.jetty</groupId>
  156. <artifactId>jetty-server</artifactId>
  157. <version>${jetty.version}</version>
  158. <scope>test</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.eclipse.jetty</groupId>
  162. <artifactId>jetty-plus</artifactId>
  163. <version>${jetty.version}</version>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.assertj</groupId>
  168. <artifactId>assertj-core</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.archiva</groupId>
  173. <artifactId>archiva-scheduler-repository</artifactId>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.archiva</groupId>
  178. <artifactId>archiva-mock</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. </dependencies>
  182. <build>
  183. <pluginManagement>
  184. <plugins>
  185. <plugin>
  186. <groupId>org.apache.rat</groupId>
  187. <artifactId>apache-rat-plugin</artifactId>
  188. <configuration>
  189. <excludes>
  190. <exclude>src/test/index-updates/nexus-maven-repository-index.properties</exclude>
  191. </excludes>
  192. </configuration>
  193. </plugin>
  194. </plugins>
  195. </pluginManagement>
  196. <plugins>
  197. <plugin>
  198. <groupId>org.apache.maven.plugins</groupId>
  199. <artifactId>maven-surefire-plugin</artifactId>
  200. <configuration>
  201. <systemPropertyVariables>
  202. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  203. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  204. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  205. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  206. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  207. <basedir>${basedir}</basedir>
  208. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  209. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  210. </systemPropertyVariables>
  211. </configuration>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. </project>