Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

pom.xml 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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/maven-v4_0_0.xsd">
  21. <parent>
  22. <groupId>org.apache.archiva</groupId>
  23. <artifactId>archiva-base</artifactId>
  24. <version>1.4-M3-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-repository-layer</artifactId>
  28. <packaging>bundle</packaging>
  29. <name>Archiva Base :: Repository Interface Layer</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>commons-lang</groupId>
  33. <artifactId>commons-lang</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.archiva</groupId>
  37. <artifactId>archiva-model</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.archiva</groupId>
  41. <artifactId>archiva-consumer-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.archiva</groupId>
  45. <artifactId>archiva-checksum</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.archiva</groupId>
  49. <artifactId>archiva-configuration</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.archiva</groupId>
  53. <artifactId>archiva-xml-tools</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.archiva</groupId>
  57. <artifactId>archiva-maven2-metadata</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-context</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>xmlunit</groupId>
  65. <artifactId>xmlunit</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.slf4j</groupId>
  70. <artifactId>slf4j-simple</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.archiva</groupId>
  75. <artifactId>metadata-model</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva</groupId>
  79. <artifactId>maven2-repository</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.maven.wagon</groupId>
  83. <artifactId>wagon-http</artifactId>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.maven.wagon</groupId>
  88. <artifactId>wagon-http-lightweight</artifactId>
  89. <scope>provided</scope>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.felix</groupId>
  96. <artifactId>maven-bundle-plugin</artifactId>
  97. <configuration>
  98. <instructions>
  99. <Bundle-SymbolicName>org.apache.archiva.repository.layer</Bundle-SymbolicName>
  100. <Bundle-Version>${project.version}</Bundle-Version>
  101. <Export-Package>
  102. org.apache.archiva.repository;version=${project.version};-split-package:=merge-first,
  103. org.apache.archiva.repository.connector;version=${project.version};-split-package:=merge-first,
  104. org.apache.archiva.repository.content;version=${project.version};-split-package:=merge-first,
  105. org.apache.archiva.repository.layout;version=${project.version};-split-package:=merge-first,
  106. org.apache.archiva.repository.metadata;version=${project.version};-split-package:=merge-first
  107. </Export-Package>
  108. <Import-Package>
  109. javax.annotation,
  110. javax.inject,
  111. org.apache.archiva.model*;version=${project.version},
  112. org.apache.archiva.admin.model*;version=${project.version},
  113. org.apache.archiva.common*;version=${project.version},
  114. org.apache.archiva.checksum;version=${project.version},
  115. org.apache.archiva.configuration;version=${project.version},
  116. org.apache.archiva.metadata*;version=${project.version},
  117. org.apache.archiva.xml;version=${project.version},
  118. org.apache.commons.collections;version="[3.2,4)",
  119. org.apache.commons.io;version="[1.4,2)",
  120. org.apache.commons.lang*;version="[2.4,3)",
  121. org.springframework*;version="[3,4)",
  122. org.dom4j;version="[1.6,2)",
  123. org.codehaus.plexus.registry,
  124. org.slf4j;resolution:=optional
  125. </Import-Package>
  126. </instructions>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-surefire-plugin</artifactId>
  132. <configuration>
  133. <systemPropertyVariables>
  134. <basedir>${basedir}</basedir>
  135. </systemPropertyVariables>
  136. </configuration>
  137. </plugin>
  138. </plugins>
  139. <pluginManagement>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.apache.rat</groupId>
  143. <artifactId>apache-rat-plugin</artifactId>
  144. <configuration>
  145. <excludes>
  146. <exclude>src/test/resources/test-repo/**</exclude>
  147. <exclude>src/test/resources/m1-repo-filelist.txt</exclude>
  148. <exclude>src/test/repositories/**</exclude>
  149. <exclude>src/test/expected-poms/**</exclude>
  150. </excludes>
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. </pluginManagement>
  155. </build>
  156. </project>