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.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?xml version="1.0"?>
  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. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.archiva</groupId>
  24. <artifactId>archiva-base</artifactId>
  25. <version>2.0.2-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>archiva-artifact-converter</artifactId>
  28. <packaging>bundle</packaging>
  29. <name>Archiva Base :: Artifact Converter</name>
  30. <description>Converts between Legacy and Modern Layout Artifacts.</description>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.apache.maven</groupId>
  34. <artifactId>maven-repository-metadata</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.maven</groupId>
  42. <artifactId>maven-artifact</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.maven</groupId>
  46. <artifactId>maven-artifact-manager</artifactId>
  47. <!-- olamy : weird enforcer doesn't have it but failed IMHO issue in enforcer plugin !!
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.apache.maven.wagon</groupId>
  51. <artifactId>wagon-provider-api</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. -->
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.archiva</groupId>
  58. <artifactId>archiva-plexus-bridge</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.archiva</groupId>
  62. <artifactId>archiva-transaction</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-context</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.maven.shared</groupId>
  70. <artifactId>maven-model-converter</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.slf4j</groupId>
  74. <artifactId>slf4j-simple</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva</groupId>
  79. <artifactId>archiva-test-utils</artifactId>
  80. <version>${project.version}</version>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.felix</groupId>
  88. <artifactId>maven-bundle-plugin</artifactId>
  89. <configuration>
  90. <instructions>
  91. <Bundle-SymbolicName>org.apache.archiva.artifact.converter</Bundle-SymbolicName>
  92. <Bundle-Version>${project.version}</Bundle-Version>
  93. <Export-Package>
  94. org.apache.archiva.converter.artifact*;version=${project.version};-split-package:=merge-first
  95. </Export-Package>
  96. <Import-Package>
  97. javax.annotation,
  98. javax.inject,
  99. org.apache.archiva.common.plexusbridge;version=${project.version},
  100. org.apache.archiva.transaction;version=${project.version},
  101. org.apache.commons.io;version="[1.4,2)",
  102. org.springframework*;version="[3,4)",
  103. org.apache.maven.artifact*,
  104. org.apache.maven.model*,
  105. org.codehaus.plexus.digest,
  106. org.codehaus.plexus.util*
  107. </Import-Package>
  108. </instructions>
  109. </configuration>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-surefire-plugin</artifactId>
  114. <configuration>
  115. <systemPropertyVariables>
  116. <basedir>${basedir}</basedir>
  117. </systemPropertyVariables>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. <pluginManagement>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.apache.rat</groupId>
  125. <artifactId>apache-rat-plugin</artifactId>
  126. <configuration>
  127. <excludes>
  128. <exclude>src/test/source-repository/**</exclude>
  129. <exclude>src/test/expected-files/**</exclude>
  130. </excludes>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </pluginManagement>
  135. </build>
  136. </project>