mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-29 03:54:01 -06:00
78 lines
2.4 KiB
XML
78 lines
2.4 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.8-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<name>virtdata-api</name>
|
|
<url>http://nosqlbench.io/</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-processors</artifactId>
|
|
<version>3.12.8-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-annotations</artifactId>
|
|
<version>3.12.8-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-lang</artifactId>
|
|
<version>3.12.8-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang-version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core-java8</artifactId>
|
|
<version>1.0.0m1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>5.3.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-csv</artifactId>
|
|
<version>1.5</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|