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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  21. xmlns="http://maven.apache.org/POM/4.0.0"
  22. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  23. <modelVersion>4.0.0</modelVersion>
  24. <parent>
  25. <artifactId>plugins</artifactId>
  26. <groupId>org.apache.archiva</groupId>
  27. <version>1.4-SNAPSHOT</version>
  28. </parent>
  29. <artifactId>maven2-repository</artifactId>
  30. <name>Maven 2.x Repository Support</name>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.apache.archiva</groupId>
  34. <artifactId>metadata-model</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.archiva</groupId>
  38. <artifactId>metadata-repository-api</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.archiva</groupId>
  42. <artifactId>archiva-proxy-common</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.sonatype.sisu</groupId>
  46. <artifactId>sisu-inject-plexus</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.sonatype.sisu</groupId>
  50. <artifactId>sisu-guice</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.archiva</groupId>
  54. <artifactId>archiva-plexus-bridge</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-logging</groupId>
  58. <artifactId>commons-logging-api</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.maven</groupId>
  63. <artifactId>maven-model-builder</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.maven</groupId>
  67. <artifactId>maven-artifact</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.maven</groupId>
  71. <artifactId>maven-compat</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.maven</groupId>
  75. <artifactId>maven-model</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.maven</groupId>
  79. <artifactId>maven-core</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.maven.shared</groupId>
  83. <artifactId>maven-dependency-tree</artifactId>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.apache.maven</groupId>
  87. <artifactId>maven-project</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.archiva</groupId>
  93. <artifactId>archiva-configuration</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.maven.wagon</groupId>
  97. <artifactId>wagon-provider-api</artifactId>
  98. </dependency>
  99. <!-- TODO: aim to remove this dependency -->
  100. <dependency>
  101. <groupId>org.apache.archiva</groupId>
  102. <artifactId>archiva-xml-tools</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.archiva</groupId>
  106. <artifactId>test-repository</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.slf4j</groupId>
  111. <artifactId>slf4j-simple</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mockito</groupId>
  116. <artifactId>mockito-all</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-dependency-plugin</artifactId>
  125. <executions>
  126. <execution>
  127. <id>test-repository</id>
  128. <phase>generate-test-resources</phase>
  129. <goals>
  130. <goal>unpack-dependencies</goal>
  131. </goals>
  132. <configuration>
  133. <includeArtifactIds>test-repository</includeArtifactIds>
  134. <outputDirectory>target/test-repository</outputDirectory>
  135. <excludes>META-INF/**</excludes>
  136. </configuration>
  137. </execution>
  138. </executions>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>