nosqlbench/adapter-cqld4/pom.xml

89 lines
2.8 KiB
XML
Raw Normal View History

2022-06-02 16:40:37 -05:00
<!--
~ Copyright (c) 2022 nosqlbench
~
~ Licensed 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.
-->
<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">
2020-05-05 20:53:24 -05:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.nosqlbench</groupId>
<artifactId>mvn-defaults</artifactId>
<version>4.17.15-SNAPSHOT</version>
2020-05-05 20:53:24 -05:00
<relativePath>../mvn-defaults</relativePath>
</parent>
2021-12-21 16:43:46 -06:00
<artifactId>adapter-cqld4</artifactId>
2020-05-05 20:53:24 -05:00
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
A CQL ActivityType driver for http://nosqlbench.io/
</description>
<dependencies>
<!-- core dependencies -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>3.0.10</version>
</dependency>
2020-05-05 20:53:24 -05:00
2022-01-05 15:34:00 -06:00
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-core</artifactId>
<version>3.4.13</version>
2022-01-05 15:34:00 -06:00
</dependency>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkergraph-gremlin</artifactId>
<version>3.4.13</version>
2022-01-05 15:34:00 -06:00
</dependency>
2020-05-05 20:53:24 -05:00
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>engine-api</artifactId>
<version>4.17.15-SNAPSHOT</version>
2020-05-05 20:53:24 -05:00
</dependency>
2021-04-26 12:54:10 -05:00
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>virtdata-lib-basics</artifactId>
<version>4.17.15-SNAPSHOT</version>
2021-04-26 12:54:10 -05:00
<scope>compile</scope>
</dependency>
2020-05-05 20:53:24 -05:00
<dependency>
<groupId>com.datastax.oss</groupId>
<artifactId>java-driver-core</artifactId>
<version>4.14.1</version>
2020-05-05 20:53:24 -05:00
</dependency>
<dependency>
<groupId>com.datastax.oss</groupId>
<artifactId>java-driver-query-builder</artifactId>
2022-06-02 16:40:37 -05:00
<version>4.14.1</version>
2020-05-05 20:53:24 -05:00
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.8.4</version>
</dependency>
2020-05-05 20:53:24 -05:00
</dependencies>
</project>