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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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-scheduler</artifactId>
  26. <groupId>org.apache.archiva</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-scheduler-indexing-maven2</artifactId>
  33. <name>Archiva Scheduler :: Maven Indexing</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-configuration</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-scheduler-indexing</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.archiva</groupId>
  50. <artifactId>archiva-repository-layer</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.archiva</groupId>
  54. <artifactId>archiva-proxy-common</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.maven.wagon</groupId>
  58. <artifactId>wagon-http</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.maven.wagon</groupId>
  63. <artifactId>wagon-http-lightweight</artifactId>
  64. <scope>provided</scope>
  65. </dependency>
  66. <!-- Test dependencies -->
  67. <dependency>
  68. <groupId>org.apache.archiva</groupId>
  69. <artifactId>archiva-repository-admin-default</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.archiva</groupId>
  74. <artifactId>archiva-maven2-indexer</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva</groupId>
  79. <artifactId>maven2-repository</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.archiva</groupId>
  84. <artifactId>archiva-test-utils</artifactId>
  85. <version>${project.version}</version>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.eclipse.jetty</groupId>
  90. <artifactId>jetty-server</artifactId>
  91. <version>${jetty.version}</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.eclipse.jetty</groupId>
  96. <artifactId>jetty-plus</artifactId>
  97. <version>${jetty.version}</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.assertj</groupId>
  102. <artifactId>assertj-core</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.archiva</groupId>
  107. <artifactId>archiva-mock</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.archiva.redback</groupId>
  112. <artifactId>redback-rbac-cached</artifactId>
  113. <scope>test</scope>
  114. <version>${redback.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.archiva</groupId>
  118. <artifactId>archiva-scheduler-repository</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.logging.log4j</groupId>
  123. <artifactId>log4j-slf4j-impl</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.archiva.redback</groupId>
  127. <artifactId>redback-common-test-resources</artifactId>
  128. <scope>test</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.ow2.asm</groupId>
  132. <artifactId>asm</artifactId>
  133. <scope>test</scope>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <pluginManagement>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.rat</groupId>
  141. <artifactId>apache-rat-plugin</artifactId>
  142. <configuration>
  143. <excludes>
  144. <exclude>src/test/index-updates/nexus-maven-repository-index.properties</exclude>
  145. </excludes>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </pluginManagement>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-surefire-plugin</artifactId>
  154. <configuration>
  155. <systemPropertyVariables>
  156. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  157. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  158. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  159. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  160. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  161. <basedir>${basedir}</basedir>
  162. <archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
  163. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  164. </systemPropertyVariables>
  165. </configuration>
  166. </plugin>
  167. </plugins>
  168. </build>
  169. </project>