mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-25 18:20:33 -06:00
84 lines
2.7 KiB
XML
84 lines
2.7 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>
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>4.15.22-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>driver-pulsar</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>
|
|
A Pulsar driver for nosqlbench. This provides the ability to inject synthetic data
|
|
into a pulsar system.
|
|
</description>
|
|
|
|
<properties>
|
|
<pulsar.version>2.7.0</pulsar.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- core dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>org.apache.pulsar</groupId>
|
|
<artifactId>pulsar-client</artifactId>
|
|
<version>${pulsar.version}</version>
|
|
</dependency>
|
|
|
|
<!-- <!– https://mvnrepository.com/artifact/org.apache.avro/avro –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.avro</groupId>-->
|
|
<!-- <artifactId>avro</artifactId>-->
|
|
<!-- <version>1.10.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>engine-api</artifactId>
|
|
<version>4.15.22-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>driver-stdout</artifactId>
|
|
<version>4.15.22-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.4</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-configuration2</artifactId>
|
|
<version>2.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>1.10</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.avro/avro -->
|
|
<dependency>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro</artifactId>
|
|
<version>1.10.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|