2013-06-10 06:59:20 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
|
|
~ distributed with this work for additional information
|
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
|
|
~ "License"); you may not use this file except in compliance
|
|
|
|
~ with the License. You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
|
|
~ software distributed under the License is distributed on an
|
|
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
~ KIND, either express or implied. See the License for the
|
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
~ under the License.
|
|
|
|
-->
|
|
|
|
|
2014-07-15 20:51:21 -04:00
|
|
|
<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">
|
2013-06-10 06:59:20 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2020-06-28 04:00:07 -04:00
|
|
|
<artifactId>metadata-store-provider</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2017-05-18 01:04:58 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2013-06-10 06:59:20 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>metadata-store-cassandra</artifactId>
|
2020-06-28 04:00:07 -04:00
|
|
|
<name>Archiva Metadata :: Store Provider :: Cassandra</name>
|
|
|
|
<description>Metadata Provider using Cassandra as backend</description>
|
2013-06-10 06:59:20 -04:00
|
|
|
|
|
|
|
<properties>
|
2018-11-04 07:34:47 -05:00
|
|
|
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
2022-04-15 17:12:56 -04:00
|
|
|
<cassandraVersion>3.11.12</cassandraVersion>
|
|
|
|
<datastax.driver.version>4.14.0</datastax.driver.version>
|
2013-06-10 06:59:20 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-09-02 10:51:46 -04:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2020-06-20 13:54:20 -04:00
|
|
|
<artifactId>archiva-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-09 17:14:44 -05:00
|
|
|
<groupId>org.apache.archiva.configuration</groupId>
|
|
|
|
<artifactId>archiva-configuration-provider</artifactId>
|
2020-06-20 13:54:20 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-policies</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-xml-tools</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-checksum</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-07-04 11:00:19 -04:00
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
2020-06-20 13:54:20 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-07-04 11:00:19 -04:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2020-06-20 13:54:20 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2013-12-26 07:56:18 -05:00
|
|
|
<groupId>org.modelmapper</groupId>
|
|
|
|
<artifactId>modelmapper</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
</dependency>
|
|
|
|
|
2021-08-28 14:43:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<artifactId>java-driver-core</artifactId>
|
|
|
|
<version>${datastax.driver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<artifactId>java-driver-query-builder</artifactId>
|
|
|
|
<version>${datastax.driver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<artifactId>java-driver-mapper-runtime</artifactId>
|
|
|
|
<version>${datastax.driver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-27 14:12:09 -05:00
|
|
|
<!-- TEST Scope -->
|
2021-08-28 14:43:10 -04:00
|
|
|
<dependency>
|
2022-04-17 07:31:02 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
|
|
|
<classifier>tests</classifier>
|
2021-08-28 14:43:10 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-20 13:54:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-test-utils</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2020-01-27 14:12:09 -05:00
|
|
|
<dependency>
|
2022-01-04 14:46:35 -05:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2020-01-27 14:12:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-06-10 06:59:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-11-05 14:11:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>generic-metadata-support</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-06-10 06:59:20 -04:00
|
|
|
<dependency>
|
2014-03-25 02:29:30 -04:00
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2022-04-17 07:31:02 -04:00
|
|
|
<artifactId>log4j-core</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
<version>${log4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-08-28 14:43:10 -04:00
|
|
|
<dependency>
|
2022-04-17 07:31:02 -04:00
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>cassandra</artifactId>
|
|
|
|
<version>1.17.1</version>
|
2021-08-28 14:43:10 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2013-06-10 06:59:20 -04:00
|
|
|
</dependencies>
|
2020-07-01 16:27:51 -04:00
|
|
|
|
2013-06-10 06:59:20 -04:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2021-08-28 14:43:10 -04:00
|
|
|
<configuration>
|
2022-04-17 07:31:02 -04:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<archiva.repositorySessionFactory.id>cassandra</archiva.repositorySessionFactory.id>
|
|
|
|
<appserver.base>${project.build.directory}/appserver-base</appserver.base>
|
|
|
|
<cassandraVersion>${cassandraVersion}</cassandraVersion>
|
|
|
|
</systemPropertyVariables>
|
2021-08-28 14:43:10 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
2013-06-10 06:59:20 -04:00
|
|
|
<configuration>
|
2021-08-28 14:43:10 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>src/cassandra/**</exclude>
|
|
|
|
</excludes>
|
2013-06-10 06:59:20 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|