2021-04-30 16:37:56 -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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<version>4.15.45-SNAPSHOT</version>
|
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2021-05-03 13:33:59 -05:00
|
|
|
<artifactId>driver-jms</artifactId>
|
2021-04-30 16:37:56 -05:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<description>
|
2021-05-03 13:33:59 -05:00
|
|
|
A JMS driver for nosqlbench. This provides the ability to inject synthetic data
|
|
|
|
into a pulsar system via JMS 2.0 compatibile APIs.
|
|
|
|
|
|
|
|
NOTE: this is JMS compatible driver from DataStax that allows using a Pulsar cluster
|
|
|
|
as the potential JMS Destination
|
2021-04-30 16:37:56 -05:00
|
|
|
</description>
|
|
|
|
|
|
|
|
<repositories>
|
2021-05-03 13:33:59 -05:00
|
|
|
<!-- Tempoarily needed for Pulsar JMS Java library -->
|
2021-04-30 16:37:56 -05:00
|
|
|
<repository>
|
|
|
|
<id>datastax-releases-local</id>
|
|
|
|
<name>DataStax Local Releases</name>
|
|
|
|
<url>https://repo.sjc.dsinternal.org/artifactory/datastax-snapshots-local/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- core dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>engine-api</artifactId>
|
|
|
|
<version>4.15.45-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>driver-stdout</artifactId>
|
|
|
|
<version>4.15.45-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.12.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<artifactId>pulsar-jms</artifactId>
|
|
|
|
<groupId>com.datastax.oss</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|