Skip to content

Commit

Permalink
Merge pull request #19 from jfleming-ic/cassandra-4.1.3
Browse files Browse the repository at this point in the history
Bump to 4.1.3
  • Loading branch information
jfleming-ic authored Jul 25, 2023
2 parents 09ecb45 + d24328a commit 2b0b37d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .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 -Dcassandra.version=4.1.2
- run: mvn clean install -DoutputDirectory=/tmp/artifacts -Pdeb,rpm -Dcassandra.version=4.1.3

- save_cache:
paths:
Expand Down
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.1.2-1.0.0</version>
<version>4.1.3-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.1.2-1.0.0</version>
<version>4.1.3-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.1.2-1.0.0</version>
<version>4.1.3-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.1.2</cassandra.version>
<cassandra.version>4.1.3</cassandra.version>

<jackson.core.version>2.13.2</jackson.core.version>
<jackson.databind.version>2.13.2.2</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.1.2-1.0.0</version>
<version>4.1.3-1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-lucene-index-tests</artifactId>
<version>4.1.2-1.0.0</version>
<version>4.1.3-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 @@ -26,8 +26,8 @@ public abstract class PluginTestFramework {

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

public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.1.2-1.0.0");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.1.2");
public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.1.3-1.0.0");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.1.3");

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

0 comments on commit 2b0b37d

Please sign in to comment.