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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <artifactId>plugins</artifactId>
  24. <groupId>org.apache.archiva</groupId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <groupId>org.apache.archiva</groupId>
  28. <artifactId>stage-repository-merge</artifactId>
  29. <name>Archiva Core Plugins :: Stage Repository Merge</name>
  30. <properties>
  31. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.archiva</groupId>
  41. <artifactId>metadata-repository-api</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>maven2-repository</artifactId>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>log4j</groupId>
  53. <artifactId>log4j</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>commons-logging</groupId>
  57. <artifactId>commons-logging-api</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.archiva</groupId>
  63. <artifactId>archiva-model</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.archiva</groupId>
  67. <artifactId>metadata-store-jcr</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mockito</groupId>
  71. <artifactId>mockito-all</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.archiva</groupId>
  76. <artifactId>test-repository</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.logging.log4j</groupId>
  81. <artifactId>log4j-1.2-api</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.logging.log4j</groupId>
  86. <artifactId>log4j-slf4j-impl</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.maven.wagon</groupId>
  91. <artifactId>wagon-http</artifactId>
  92. <scope>test</scope>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>commons-logging</groupId>
  96. <artifactId>commons-logging</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.maven.wagon</groupId>
  102. <artifactId>wagon-http-lightweight</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.archiva</groupId>
  107. <artifactId>archiva-test-utils</artifactId>
  108. <version>${project.version}</version>
  109. <scope>test</scope>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>slf4j-simple</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>xerces</groupId>
  119. <artifactId>xercesImpl</artifactId>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.ow2.asm</groupId>
  124. <artifactId>asm</artifactId>
  125. <scope>test</scope>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-dependency-plugin</artifactId>
  133. <executions>
  134. <execution>
  135. <id>test-repository</id>
  136. <phase>process-test-classes</phase>
  137. <goals>
  138. <goal>unpack-dependencies</goal>
  139. </goals>
  140. <configuration>
  141. <includeArtifactIds>test-repository</includeArtifactIds>
  142. <outputDirectory>target/test-repository</outputDirectory>
  143. <excludes>META-INF/**</excludes>
  144. </configuration>
  145. </execution>
  146. </executions>
  147. </plugin>
  148. </plugins>
  149. <pluginManagement>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.codehaus.plexus</groupId>
  153. <artifactId>plexus-component-metadata</artifactId>
  154. <version>1.0-beta-3.0.5</version>
  155. <executions>
  156. <execution>
  157. <id>process-classes</id>
  158. <goals>
  159. <goal>generate-metadata</goal>
  160. </goals>
  161. </execution>
  162. <execution>
  163. <id>process-test-classes</id>
  164. <goals>
  165. <goal>generate-test-metadata</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. <plugin>
  171. <groupId>org.apache.rat</groupId>
  172. <artifactId>apache-rat-plugin</artifactId>
  173. <configuration>
  174. <excludes>
  175. <exclude>src/test/resources/target-repo/**</exclude>
  176. <exclude>src/test/resources/test-repository-with-conflict-artifacts/**</exclude>
  177. </excludes>
  178. </configuration>
  179. </plugin>
  180. </plugins>
  181. </pluginManagement>
  182. </build>
  183. </project>