2022-06-22 22:53:56 -05:00
|
|
|
<!--
|
2023-01-12 12:48:50 -06:00
|
|
|
~ Copyright (c) 2022-2023 nosqlbench
|
2022-06-22 22:53:56 -05:00
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
-->
|
|
|
|
|
2023-01-13 13:51:55 -06: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">
|
2021-08-10 10:34:26 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2023-01-19 16:53:33 -06:00
|
|
|
<version>${revision}</version>
|
2021-08-10 10:34:26 -05:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>adapters-api</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>
|
|
|
|
The DriverAdapter API for nosqlbench;
|
|
|
|
Provides the interfaces needed to build drivers that can be loaded
|
|
|
|
by nosqlbench core, using a minimal and direct API for op mapping.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2023-12-06 14:26:53 -06:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>io.nosqlbench</groupId>-->
|
|
|
|
<!-- <artifactId>nb-spectest</artifactId>-->
|
|
|
|
<!-- <version>${revision}</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
2022-06-22 22:53:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2023-12-06 14:26:53 -06:00
|
|
|
<artifactId>nb-annotations</artifactId>
|
2023-01-19 16:53:33 -06:00
|
|
|
<version>${revision}</version>
|
2023-05-30 23:14:29 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2023-12-06 14:26:53 -06:00
|
|
|
<artifactId>nb-spectest</artifactId>
|
2023-05-30 23:14:29 -05:00
|
|
|
<version>${revision}</version>
|
2022-06-22 22:53:56 -05:00
|
|
|
</dependency>
|
|
|
|
|
2021-08-10 10:34:26 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>nb-api</artifactId>
|
2023-01-19 16:53:33 -06:00
|
|
|
<version>${revision}</version>
|
2021-08-10 10:34:26 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>virtdata-userlibs</artifactId>
|
2023-01-19 16:53:33 -06:00
|
|
|
<version>${revision}</version>
|
2021-08-10 10:34:26 -05:00
|
|
|
</dependency>
|
|
|
|
|
2023-01-26 18:20:19 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.databricks</groupId>
|
|
|
|
<artifactId>sjsonnet_2.13</artifactId>
|
2023-08-20 23:47:50 -05:00
|
|
|
<version>0.4.5</version>
|
2023-01-26 18:20:19 -06:00
|
|
|
</dependency>
|
2021-08-10 10:34:26 -05:00
|
|
|
|
2023-01-27 18:58:57 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
<artifactId>scala-library</artifactId>
|
2023-10-03 23:22:00 -05:00
|
|
|
<version>2.13.12</version>
|
2023-01-27 18:58:57 -06:00
|
|
|
</dependency>
|
|
|
|
|
2023-07-25 11:31:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.groovy</groupId>
|
|
|
|
<artifactId>groovy</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-08-10 10:34:26 -05:00
|
|
|
</dependencies>
|
2021-07-20 18:26:53 -05:00
|
|
|
|
2022-06-28 18:23:25 -05:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2021-07-20 18:26:53 -05:00
|
|
|
</project>
|