nosqlbench/pom.xml
yabinmeng bd8aff9081 Added support for 1) subscription initial position and 2) regex subscription mode
Also fixed a consumer configuration loading issue with dlq/negAck/ackTimeout policy using Pulsar client's loadConf() API.

Addressed the review comments in PR #791; reverted the changes in ActivityMetrics and BasedOpDispenser
2022-11-18 18:22:04 -06:00

202 lines
6.6 KiB
XML

<!--
~ Copyright (c) 2022 nosqlbench
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>nosqlbench</artifactId>
<packaging>pom</packaging>
<parent>
<artifactId>mvn-defaults</artifactId>
<groupId>io.nosqlbench</groupId>
<version>4.17.31-SNAPSHOT</version>
<relativePath>mvn-defaults</relativePath>
</parent>
<name>${project.artifactId}</name>
<url>http://nosqlbench.io/</url>
<description>A reusable machine pattern for building dynamic load
testing systems
</description>
<modules>
<!-- CORE MODULES -->
<module>mvn-defaults</module>
<module>nb5</module>
<module>nbr</module>
<module>nbr-examples</module>
<module>nb-api</module>
<module>nb-annotations</module>
<module>nb-spectest</module>
<module>engine-api</module>
<module>engine-core</module>
<module>engine-extensions</module>
<module>engine-docker</module>
<module>engine-docs</module>
<module>engine-cli</module>
<module>engine-rest</module>
<module>engine-clients</module>
<module>adapters-api</module>
<!-- driver modules -->
<module>adapter-diag</module>
<module>adapter-stdout</module>
<module>adapter-cqld4</module>
<module>adapter-http</module>
<module>adapter-tcp</module>
<module>adapter-dynamodb</module>
<module>adapter-mongodb</module>
<module>adapter-pulsar</module>
<!-- VIRTDATA MODULES -->
<module>virtdata-api</module>
<module>virtdata-lang</module>
<module>virtdata-realdata</module>
<module>virtdata-lib-basics</module>
<module>virtdata-lib-random</module>
<module>virtdata-lib-curves4</module>
<module>virtdata-lib-realer</module>
<module>virtdata-userlibs</module>
<!-- Documentation -->
<module>docsys</module>
</modules>
<profiles>
<profile>
<id>with-nb</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>nb</module>
<module>driver-tcp</module>
<module>driver-kafka</module>
<module>driver-jmx</module>
<module>driver-jdbc</module>
<module>driver-cockroachdb</module>
</modules>
</profile>
<profile>
<id>with-mongodb</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>driver-mongodb</module>
</modules>
</profile>
</profiles>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<useReleaseProfile>true</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<configuration>
</configuration>
<!-- NO Executions by default for main project builds.
This plugin should be called directly on the command line
The site plugin appears to be broken or at least not properly maintained,
so invoking via the site phase is more trouble than it is worth.
-->
<!-- <executions>-->
<!-- </executions>-->
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</reporting>
<developers>
<developer>
<name>Jonathan Shook</name>
<email>jshook@gmail.com</email>
<organization>nosqlbench.io</organization>
<organizationUrl>http://nosqlbench.io/</organizationUrl>
</developer>
<developer>
<name>Sebastián Estévez</name>
<email>estevezsebastian@gmail.com</email>
<organization>nosqlbench.io</organization>
<organizationUrl>http://nosqlbench.io/</organizationUrl>
</developer>
</developers>
<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<layout>default</layout>
<url>https://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:git:https://github.com/nosqlbench/nosqlbench.git
</connection>
<developerConnection>
scm:git:https://github.com/nosqlbench/nosqlbench.git
</developerConnection>
<url>scm:git:git@github.com:nosqlbench/nosqlbench.git</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>