2020-05-18 11:33:08 -05: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>
|
|
|
|
|
|
|
|
<artifactId>driver-mongodb</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-09-17 03:29:33 -05:00
|
|
|
<version>3.12.150-SNAPSHOT</version>
|
2020-05-18 11:33:08 -05:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>
|
|
|
|
An nosqlbench ActivityType (AT) driver module;
|
|
|
|
MongoDB
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>engine-api</artifactId>
|
2020-09-17 03:29:33 -05:00
|
|
|
<version>3.12.150-SNAPSHOT</version>
|
2020-05-18 11:33:08 -05:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-15 19:30:34 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>drivers-api</artifactId>
|
2020-09-17 03:29:33 -05:00
|
|
|
<version>3.12.150-SNAPSHOT</version>
|
2020-09-15 19:30:34 -05:00
|
|
|
</dependency>
|
|
|
|
|
2020-05-18 11:33:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
2020-05-27 21:32:19 -05:00
|
|
|
<artifactId>mongodb-driver-sync</artifactId>
|
|
|
|
<version>4.0.3</version>
|
2020-05-18 11:33:08 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|