mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
157 lines
4.8 KiB
XML
157 lines
4.8 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>
|
|
|
|
<artifactId>nosqlbench</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.152-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>
|
|
|
|
<!-- project level defaults -->
|
|
<module>mvn-defaults</module>
|
|
<!-- web apps and service hooks -->
|
|
<module>docsys</module>
|
|
<module>nb-api</module>
|
|
<module>nb-annotations</module>
|
|
|
|
<!-- engine modules -->
|
|
<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>drivers-api</module>
|
|
|
|
<!-- a binary (appimage) build option for nb -->
|
|
<module>nb</module>
|
|
|
|
<!-- driver modules -->
|
|
<module>driver-diag</module>
|
|
<module>driver-stdout</module>
|
|
<module>driver-tcp</module>
|
|
<module>driver-http</module>
|
|
<module>driver-cql-shaded</module>
|
|
<module>driver-cqlverify</module>
|
|
<module>driver-web</module>
|
|
<module>driver-kafka</module>
|
|
<module>driver-mongodb</module>
|
|
<module>driver-jmx</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>
|
|
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>with-cql-d4</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<modules>
|
|
<module>driver-cqld4</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>with-mongodb</id>
|
|
<activation>
|
|
<activeByDefault>true</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>
|
|
</plugins>
|
|
</build>
|
|
|
|
<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>
|