2020-02-20 15:37:57 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>mvn-defaults</artifactId>
|
2020-02-20 15:37:57 -06:00
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-05-13 13:56:07 -05:00
|
|
|
<version>3.12.105</version>
|
2020-02-24 10:20:00 -06:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
2020-02-20 15:37:57 -06:00
|
|
|
</parent>
|
|
|
|
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>engine-cli</artifactId>
|
2020-02-20 15:37:57 -06:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>CLI for nosqlbench</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<javadoc.name>nosqlbench Command Line</javadoc.name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-02-24 10:20:00 -06:00
|
|
|
<artifactId>engine-core</artifactId>
|
2020-05-13 13:56:07 -05:00
|
|
|
<version>3.12.105</version>
|
2020-02-20 15:37:57 -06:00
|
|
|
</dependency>
|
|
|
|
|
2020-03-16 10:58:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-02-20 15:37:57 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
2020-04-01 15:24:29 -05:00
|
|
|
<artifactId>assertj-core</artifactId>
|
2020-02-20 15:37:57 -06:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-03-19 06:26:54 -05:00
|
|
|
|
2020-02-20 15:37:57 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2020-03-19 11:31:18 -05:00
|
|
|
<version>1.2.3</version>
|
|
|
|
</dependency>
|
2020-03-23 18:31:02 -05:00
|
|
|
|
2020-03-19 11:31:18 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>engine-docker</artifactId>
|
2020-05-13 13:56:07 -05:00
|
|
|
<version>3.12.105</version>
|
2020-02-20 15:37:57 -06:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|