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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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>metadata-store-provider</artifactId>
  24. <groupId>org.apache.archiva</groupId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>metadata-store-cassandra</artifactId>
  28. <name>Archiva Metadata :: Store Provider :: Cassandra</name>
  29. <description>Metadata Provider using Cassandra as backend</description>
  30. <properties>
  31. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  32. <cassandraVersion>3.11.12</cassandraVersion>
  33. <datastax.driver.version>4.14.0</datastax.driver.version>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-lang3</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.archiva</groupId>
  42. <artifactId>metadata-repository-api</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-common</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.archiva.configuration</groupId>
  50. <artifactId>archiva-configuration-provider</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.archiva</groupId>
  54. <artifactId>archiva-policies</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.archiva</groupId>
  58. <artifactId>archiva-xml-tools</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.archiva</groupId>
  62. <artifactId>archiva-repository-api</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.archiva</groupId>
  66. <artifactId>archiva-checksum</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.archiva</groupId>
  70. <artifactId>metadata-model</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>jakarta.annotation</groupId>
  74. <artifactId>jakarta.annotation-api</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>jakarta.inject</groupId>
  78. <artifactId>jakarta.inject-api</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-beans</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-context</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.modelmapper</groupId>
  90. <artifactId>modelmapper</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.datastax.oss</groupId>
  94. <artifactId>java-driver-core</artifactId>
  95. <version>${datastax.driver.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.datastax.oss</groupId>
  99. <artifactId>java-driver-query-builder</artifactId>
  100. <version>${datastax.driver.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.datastax.oss</groupId>
  104. <artifactId>java-driver-mapper-runtime</artifactId>
  105. <version>${datastax.driver.version}</version>
  106. </dependency>
  107. <!-- TEST Scope -->
  108. <dependency>
  109. <groupId>org.apache.archiva</groupId>
  110. <artifactId>metadata-repository-api</artifactId>
  111. <classifier>tests</classifier>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.archiva</groupId>
  116. <artifactId>archiva-test-utils</artifactId>
  117. <version>${project.version}</version>
  118. <scope>test</scope>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>org.slf4j</groupId>
  122. <artifactId>slf4j-simple</artifactId>
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.mockito</groupId>
  128. <artifactId>mockito-core</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-test</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.archiva</groupId>
  138. <artifactId>generic-metadata-support</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.assertj</groupId>
  143. <artifactId>assertj-core</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.logging.log4j</groupId>
  148. <artifactId>log4j-slf4j-impl</artifactId>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.logging.log4j</groupId>
  153. <artifactId>log4j-core</artifactId>
  154. <version>${log4j.version}</version>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.testcontainers</groupId>
  159. <artifactId>cassandra</artifactId>
  160. <version>1.17.1</version>
  161. <scope>test</scope>
  162. </dependency>
  163. </dependencies>
  164. <build>
  165. <pluginManagement>
  166. <plugins>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-surefire-plugin</artifactId>
  170. <configuration>
  171. <systemPropertyVariables>
  172. <archiva.repositorySessionFactory.id>cassandra</archiva.repositorySessionFactory.id>
  173. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  174. <cassandraVersion>${cassandraVersion}</cassandraVersion>
  175. </systemPropertyVariables>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.rat</groupId>
  180. <artifactId>apache-rat-plugin</artifactId>
  181. <configuration>
  182. <excludes>
  183. <exclude>src/cassandra/**</exclude>
  184. </excludes>
  185. </configuration>
  186. </plugin>
  187. </plugins>
  188. </pluginManagement>
  189. </build>
  190. </project>