make cql-d4 optional via profile

This commit is contained in:
Jonathan Shook 2020-05-14 15:12:49 -05:00
parent be16085663
commit 7fb0eb8332
3 changed files with 27 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<parent> <parent>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<artifactId>mvn-defaults</artifactId> <artifactId>mvn-defaults</artifactId>
<version>3.12.100-SNAPSHOT</version> <version>3.12.104-SNAPSHOT</version>
<relativePath>../mvn-defaults</relativePath> <relativePath>../mvn-defaults</relativePath>
</parent> </parent>
@ -23,7 +23,7 @@
<dependency> <dependency>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<artifactId>engine-api</artifactId> <artifactId>engine-api</artifactId>
<version>3.12.100-SNAPSHOT</version> <version>3.12.104-SNAPSHOT</version>
</dependency> </dependency>

View File

@ -87,12 +87,6 @@
<version>3.12.104-SNAPSHOT</version> <version>3.12.104-SNAPSHOT</version>
</dependency> </dependency>
<!-- <dependency>-->
<!-- <groupId>io.nosqlbench</groupId>-->
<!-- <artifactId>driver-cqld4</artifactId>-->
<!-- <version>3.12.100-SNAPSHOT</version>-->
<!-- </dependency>-->
<dependency> <dependency>
<groupId>io.nosqlbench</groupId> <groupId>io.nosqlbench</groupId>
<artifactId>driver-cqlverify</artifactId> <artifactId>driver-cqlverify</artifactId>
@ -233,6 +227,19 @@
</build> </build>
<profiles> <profiles>
<profile>
<id>with-cql-d4</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>driver-cqld4</artifactId>
<version>3.12.104-SNAPSHOT</version>
</dependency>
</dependencies>
</profile>
<profile> <profile>
<id>build-nb-appimage</id> <id>build-nb-appimage</id>
<activation> <activation>

12
pom.xml
View File

@ -58,6 +58,18 @@
</modules> </modules>
<profiles>
<profile>
<id>with-cql-d4</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>driver-cqld4</module>
</modules>
</profile>
</profiles>
<licenses> <licenses>
<license> <license>
<name>The Apache License, Version 2.0</name> <name>The Apache License, Version 2.0</name>