mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-23 01:06:47 -06:00
50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>virtdata-api</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<version>3.12.140</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<name>virtdata-api</name>
|
|
<url>http://nosqlbench.io/</url>
|
|
<description>
|
|
The internal API module for Virtual Data Set modules. Each module that provides
|
|
mapping functions should only have to depend on this module to get all the dependencies
|
|
it needs.
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.140</version>
|
|
<artifactId>nb-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-lang</artifactId>
|
|
<version>3.12.140</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup</groupId>
|
|
<artifactId>javapoet</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|