diff options
-rwxr-xr-x | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -103,6 +103,11 @@ <jcommander.version>1.78</jcommander.version> <gremlin.version>3.5.8</gremlin.version> <janusgraph.version>0.6.4</janusgraph.version> + + <!-- fix the driver version to match the one defined in janusgraph-cql + spring-boot (2.4) is otherwise downgrading it to 4.9.0 --> + <!-- see https://github.com/JanusGraph/janusgraph/blob/v0.6.0/pom.xml#L120 --> + <cassandra-driver.version>4.13.0</cassandra-driver.version> </properties> <profiles> @@ -322,6 +327,11 @@ <artifactId>guava</artifactId> <version>25.0-jre</version> </dependency> + <dependency> + <groupId>com.datastax.oss</groupId> + <artifactId>java-driver-core</artifactId> + <version>${cassandra-driver.version}</version> + </dependency> </dependencies> </dependencyManagement> <dependencies> |