2021-01-24 18:21:41 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-10-15 16:10:32 -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">
|
2021-01-24 18:21:41 -06:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
2022-05-18 14:49:25 -05:00
|
|
|
<version>4.17.15-SNAPSHOT</version>
|
2021-01-24 18:21:41 -06:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>driver-cockroachdb</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
A CockroachDB ActivityType driver for http://nosqlbench.io/
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>driver-jdbc</artifactId>
|
2022-05-18 14:49:25 -05:00
|
|
|
<version>4.17.15-SNAPSHOT</version>
|
2021-01-24 18:21:41 -06:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2022-03-07 17:07:43 -06:00
|
|
|
<version>42.3.3</version>
|
2021-01-24 18:21:41 -06:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|