mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
remove profile disables, since enabling across module layers is unreliable
This commit is contained in:
162
nb5/pom.xml
162
nb5/pom.xml
@@ -61,11 +61,71 @@
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-pinecone</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-dynamodb</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-http</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-tcp</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-pulsar</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-kafka</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-amqp</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-jdbc</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-milvus</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-mongodb</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-aws-opensearch</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-cqld4</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-s4j</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
@@ -193,8 +253,10 @@
|
||||
<profile>
|
||||
<id>adapter-opensearch</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-opensearch/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-opensearch/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -208,8 +270,10 @@
|
||||
<profile>
|
||||
<id>adapter-cqld4</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-cqld4/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-cqld4/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -222,8 +286,10 @@
|
||||
<profile>
|
||||
<id>adapter-s4j</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-s4j/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-s4j/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -236,8 +302,10 @@
|
||||
<profile>
|
||||
<id>adapter-pinecone</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-pinecone/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-pinecone/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -250,8 +318,10 @@
|
||||
<profile>
|
||||
<id>adapter-mongodb</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-mongodb/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-mongodb/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -264,8 +334,10 @@
|
||||
<profile>
|
||||
<id>adapter-tcp</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-tcp/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-tcp/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -278,8 +350,10 @@
|
||||
<profile>
|
||||
<id>adapter-dynamodb</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-dynamodb/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-dynamodb/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -289,25 +363,29 @@
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>adapter-http</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-http/target</exists></file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-http</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>adapter-http</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-http/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.nosqlbench</groupId>
|
||||
<artifactId>adapter-http</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>adapter-pulsar</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-pulsar/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-pulsar/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -320,8 +398,10 @@
|
||||
<profile>
|
||||
<id>adapter-kafka</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-kafka/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-kafka/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -334,8 +414,10 @@
|
||||
<profile>
|
||||
<id>adapter-amqp</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-amqp/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-amqp/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -348,8 +430,10 @@
|
||||
<profile>
|
||||
<id>adapter-jdbc</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-jdbc/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-jdbc/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -362,8 +446,10 @@
|
||||
<profile>
|
||||
<id>adapter-milvus</id>
|
||||
<activation>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file><exists>../adapter-milvus/target</exists></file>
|
||||
<!-- <activeByDefault>true</activeByDefault>-->
|
||||
<file>
|
||||
<exists>../adapter-milvus/target</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user