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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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>1.4-M3-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. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.codehaus.redback.components.registry</groupId>
  53. <artifactId>spring-registry-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.codehaus.redback.components</groupId>
  57. <artifactId>spring-taskqueue</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.maven.indexer</groupId>
  65. <artifactId>indexer-core</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>javax.inject</groupId>
  69. <artifactId>javax.inject</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.archiva</groupId>
  73. <artifactId>archiva-repository-admin-api</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-simple</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.archiva</groupId>
  82. <artifactId>archiva-repository-admin-default</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.maven.wagon</groupId>
  87. <artifactId>wagon-http-lightweight</artifactId>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.archiva</groupId>
  92. <artifactId>metadata-store-jcr</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.jackrabbit</groupId>
  97. <artifactId>jackrabbit-core</artifactId>
  98. <scope>test</scope>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>commons-logging</groupId>
  102. <artifactId>commons-logging</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.felix</groupId>
  111. <artifactId>maven-bundle-plugin</artifactId>
  112. <configuration>
  113. <instructions>
  114. <Bundle-SymbolicName>org.apache.archiva.consumers.lucene</Bundle-SymbolicName>
  115. <Bundle-Version>${project.version}</Bundle-Version>
  116. <Export-Package>
  117. org.apache.archiva.consumers.lucene;version=${project.version}
  118. </Export-Package>
  119. <Import-Package>
  120. javax.annotation,
  121. javax.inject,
  122. org.apache.archiva.admin.model*;version=${project.version},
  123. org.apache.archiva.common.plexusbridge;version=${project.version},
  124. org.apache.archiva.configuration;version=${project.version},
  125. org.apache.archiva.consumers;version=${project.version},
  126. org.apache.archiva.scheduler*;version=${project.version},
  127. org.springframework*;version="[3,4)",
  128. org.apache.maven.index*,
  129. org.codehaus.plexus.registry,
  130. org.codehaus.plexus.taskqueue,
  131. org.slf4j;resolution:=optional
  132. </Import-Package>
  133. </instructions>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. <pluginManagement>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.rat</groupId>
  141. <artifactId>apache-rat-plugin</artifactId>
  142. <configuration>
  143. <excludes>
  144. <exclude>src/test/resources/test-repo/**</exclude>
  145. </excludes>
  146. </configuration>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-surefire-plugin</artifactId>
  151. <configuration>
  152. <systemPropertyVariables>
  153. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  154. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  155. </systemPropertyVariables>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. </pluginManagement>
  160. </build>
  161. </project>