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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.archiva</groupId>
  24. <artifactId>archiva-consumers</artifactId>
  25. <version>2.2.11-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>archiva-lucene-consumers</artifactId>
  28. <packaging>bundle</packaging>
  29. <name>Archiva Base :: Consumers :: Lucene</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.archiva</groupId>
  33. <artifactId>archiva-configuration</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.archiva</groupId>
  37. <artifactId>archiva-consumer-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.archiva</groupId>
  41. <artifactId>archiva-scheduler-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.archiva</groupId>
  45. <artifactId>archiva-scheduler-indexing</artifactId>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>commons-logging</groupId>
  49. <artifactId>commons-logging-api</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-api</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.archiva.redback.components.registry</groupId>
  59. <artifactId>spring-registry-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.archiva.redback.components</groupId>
  63. <artifactId>spring-taskqueue</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-io</groupId>
  67. <artifactId>commons-io</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.maven.indexer</groupId>
  71. <artifactId>indexer-core</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>javax.inject</groupId>
  75. <artifactId>javax.inject</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.archiva</groupId>
  79. <artifactId>archiva-repository-admin-api</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.archiva</groupId>
  83. <artifactId>archiva-test-utils</artifactId>
  84. <version>${project.version}</version>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.archiva</groupId>
  89. <artifactId>archiva-repository-admin-default</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.maven.wagon</groupId>
  94. <artifactId>wagon-http-lightweight</artifactId>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.archiva</groupId>
  99. <artifactId>archiva-scheduler-repository</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.archiva</groupId>
  104. <artifactId>maven2-repository</artifactId>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.archiva</groupId>
  109. <artifactId>metadata-store-jcr</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.jackrabbit</groupId>
  114. <artifactId>jackrabbit-core</artifactId>
  115. <scope>test</scope>
  116. <exclusions>
  117. <exclusion>
  118. <groupId>commons-logging</groupId>
  119. <artifactId>commons-logging</artifactId>
  120. </exclusion>
  121. <exclusion>
  122. <groupId>org.slf4j</groupId>
  123. <artifactId>jcl-over-slf4j</artifactId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.apache.felix</groupId>
  132. <artifactId>maven-bundle-plugin</artifactId>
  133. <configuration>
  134. <instructions>
  135. <Bundle-SymbolicName>org.apache.archiva.consumers.lucene</Bundle-SymbolicName>
  136. <Bundle-Version>${project.version}</Bundle-Version>
  137. <Export-Package>
  138. org.apache.archiva.consumers.lucene;version=${project.version}
  139. </Export-Package>
  140. <Import-Package>
  141. javax.annotation,
  142. javax.inject,
  143. org.apache.archiva.admin.model*;version=${project.version},
  144. org.apache.archiva.common.plexusbridge;version=${project.version},
  145. org.apache.archiva.configuration;version=${project.version},
  146. org.apache.archiva.consumers;version=${project.version},
  147. org.apache.archiva.scheduler*;version=${project.version},
  148. org.springframework*;version="[3,4)",
  149. org.apache.maven.index*,
  150. org.apache.archiva.redback.components.registry,
  151. org.apache.archiva.redback.components.taskqueue,
  152. org.slf4j;resolution:=optional
  153. </Import-Package>
  154. </instructions>
  155. </configuration>
  156. </plugin>
  157. </plugins>
  158. <pluginManagement>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.apache.rat</groupId>
  162. <artifactId>apache-rat-plugin</artifactId>
  163. <configuration>
  164. <excludes>
  165. <exclude>src/test/resources/test-repo/**</exclude>
  166. </excludes>
  167. </configuration>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-surefire-plugin</artifactId>
  172. <configuration>
  173. <systemPropertyVariables>
  174. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  175. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  176. </systemPropertyVariables>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </pluginManagement>
  181. </build>
  182. </project>