Skip to content

Commit

Permalink
update to Cassandra 4.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Jul 6, 2021
1 parent 5ec2e42 commit 7e24fec
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- m2-{{ checksum "pom.xml" }}
- m2-

- run: mvn clean install -DoutputDirectory=/tmp/artifacts -Pdeb,rpm
- run: mvn clean install -DoutputDirectory=/tmp/artifacts -Pdeb,rpm -Dcassandra.version=4.0-rc2

- save_cache:
paths:
Expand Down Expand Up @@ -56,12 +56,12 @@ workflows:
- build:
filters:
tags:
only: /^cassandra-4\.0-rc1-\d+\.\d+\.\d+$/
only: /^cassandra-4\.0-rc2-\d+\.\d+\.\d+$/
- publish-github-release:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^cassandra-4\.0-rc1-\d+\.\d+\.\d+$/
only: /^cassandra-4\.0-rc2-\d+\.\d+\.\d+$/
2 changes: 1 addition & 1 deletion builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.1</version>
<version>4.0-rc2-1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.1</version>
<version>4.0-rc2-1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.1</version>
<version>4.0-rc2-1.0.0</version>
<packaging>pom</packaging>

<name>Cassandra Lucene index</name>
Expand Down Expand Up @@ -94,7 +94,7 @@
</distributionManagement>

<properties>
<cassandra.version>4.0-rc1</cassandra.version>
<cassandra.version>4.0-rc2</cassandra.version>

<jackson.core.version>2.9.10</jackson.core.version>
<jackson.databind.version>2.9.10.8</jackson.databind.version>
Expand Down
4 changes: 2 additions & 2 deletions testsAT/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.0-rc1-1.0.1</version>
<version>4.0-rc2-1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-lucene-index-tests</artifactId>
<version>4.0-rc1-1.0.1</version>
<version>4.0-rc2-1.0.0</version>

<packaging>jar</packaging>
<name>Cassandra Lucene Index acceptance tests</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public abstract class PluginTestFramework {

static class NestedSingleton implements BeforeAllCallback, ExtensionContext.Store.CloseableResource {

public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.0-rc1-1.0.1");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.0-rc1");
public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.0-rc2-1.0.0");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.0-rc2");

private static volatile boolean disconnected = false;
private static volatile boolean initialized = false;
Expand Down

0 comments on commit 7e24fec

Please sign in to comment.