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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <artifactId>oak-jcr</artifactId>
  24. <groupId>org.apache.archiva</groupId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>metadata-store-jcr</artifactId>
  28. <name>Archiva Metadata :: Store Provider :: JCR :: Oak Implementation</name>
  29. <description>Metadata provider that uses JCR Oak as backend</description>
  30. <properties>
  31. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.apache.archiva</groupId>
  36. <artifactId>metadata-repository-api</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.archiva</groupId>
  40. <artifactId>metadata-statistics-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.archiva</groupId>
  44. <artifactId>archiva-checksum</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.archiva</groupId>
  48. <artifactId>archiva-common</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.archiva</groupId>
  52. <artifactId>metadata-model</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.archiva.maven</groupId>
  56. <artifactId>archiva-maven-metadata</artifactId>
  57. </dependency>
  58. <!-- This is a oak-lucene package with shaded lucene dependencies -->
  59. <dependency>
  60. <groupId>org.apache.archiva</groupId>
  61. <artifactId>oak-jcr-lucene</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-context</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>javax.jcr</groupId>
  73. <artifactId>jcr</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.jackrabbit</groupId>
  77. <artifactId>oak-jcr</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.jackrabbit</groupId>
  81. <artifactId>oak-segment-tar</artifactId>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>io.netty</groupId>
  85. <artifactId>netty-transport</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>io.netty</groupId>
  89. <artifactId>netty-resolver</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>io.netty</groupId>
  93. <artifactId>netty-handler</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>io.netty</groupId>
  97. <artifactId>netty-common</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>io.netty</groupId>
  101. <artifactId>netty-codec</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>io.netty</groupId>
  105. <artifactId>netty-buffer</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.jackrabbit</groupId>
  111. <artifactId>oak-api</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.jackrabbit</groupId>
  115. <artifactId>oak-core-spi</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.jackrabbit</groupId>
  119. <artifactId>oak-store-spi</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.jackrabbit</groupId>
  123. <artifactId>oak-blob</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.jackrabbit</groupId>
  127. <artifactId>jackrabbit-jcr-commons</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.jackrabbit</groupId>
  131. <artifactId>oak-query-spi</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.jackrabbit</groupId>
  135. <artifactId>oak-core</artifactId>
  136. </dependency>
  137. <!-- netty is a transitive dependencies of oak-segment-tar
  138. increasing version -->
  139. <dependency>
  140. <groupId>io.netty</groupId>
  141. <artifactId>netty-transport</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>io.netty</groupId>
  145. <artifactId>netty-resolver</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.netty</groupId>
  149. <artifactId>netty-handler</artifactId>
  150. </dependency>
  151. <dependency>
  152. <groupId>io.netty</groupId>
  153. <artifactId>netty-common</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>io.netty</groupId>
  157. <artifactId>netty-codec</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.netty</groupId>
  161. <artifactId>netty-buffer</artifactId>
  162. </dependency>
  163. <dependency>
  164. <groupId>jakarta.inject</groupId>
  165. <artifactId>jakarta.inject-api</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>jakarta.annotation</groupId>
  169. <artifactId>jakarta.annotation-api</artifactId>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.dropwizard.metrics</groupId>
  173. <artifactId>metrics-core</artifactId>
  174. <scope>runtime</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>commons-io</groupId>
  178. <artifactId>commons-io</artifactId>
  179. </dependency>
  180. <!-- Test scope -->
  181. <dependency>
  182. <groupId>org.apache.archiva</groupId>
  183. <artifactId>metadata-repository-api</artifactId>
  184. <classifier>tests</classifier>
  185. <scope>test</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.archiva</groupId>
  189. <artifactId>archiva-test-utils</artifactId>
  190. <version>${project.version}</version>
  191. <scope>test</scope>
  192. <exclusions>
  193. <exclusion>
  194. <groupId>org.slf4j</groupId>
  195. <artifactId>slf4j-simple</artifactId>
  196. </exclusion>
  197. </exclusions>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.springframework</groupId>
  201. <artifactId>spring-test</artifactId>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.apache.archiva</groupId>
  206. <artifactId>generic-metadata-support</artifactId>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.assertj</groupId>
  211. <artifactId>assertj-core</artifactId>
  212. <scope>test</scope>
  213. </dependency>
  214. </dependencies>
  215. <build>
  216. <testResources>
  217. <testResource>
  218. <directory>src/test/filtered-resources</directory>
  219. <filtering>true</filtering>
  220. </testResource>
  221. <testResource>
  222. <directory>src/test/resources</directory>
  223. <filtering>false</filtering>
  224. </testResource>
  225. </testResources>
  226. <plugins>
  227. <plugin>
  228. <groupId>org.apache.maven.plugins</groupId>
  229. <artifactId>maven-surefire-plugin</artifactId>
  230. <configuration>
  231. <systemPropertyVariables>
  232. <appserver.base>${project.build.directory}/jcr/repo</appserver.base>
  233. </systemPropertyVariables>
  234. </configuration>
  235. </plugin>
  236. </plugins>
  237. </build>
  238. </project>