Skip to content

Commit

Permalink
bump to 3.0.25 and 3.11.11
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Jul 29, 2021
1 parent ee0a380 commit 616a99e
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ these classes will be present when such plugin as a whole is put on a class path
There are four implementation modules:

* cassandra-2.2 - builds against version 2.2.19
* cassandra-3.0 - builds against version 3.0.23
* cassandra-3.11 - builds against version 3.11.9
* cassandra-4.0 - builds against version 4.0-beta3
* cassandra-3.0 - builds against version 3.0.25
* cassandra-3.11 - builds against version 3.11.11
* cassandra-4.0 - builds against version 4.0.0
Project is built as:

Expand Down
2 changes: 1 addition & 1 deletion base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>3.0.23</version>
<version>3.0.25</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

mvn clean install \
-Dversion.cassandra22=2.2.19 \
-Dversion.cassandra30=3.0.23 \
-Dversion.cassandra311=3.11.10 \
-Dversion.cassandra4=4.0-rc2
-Dversion.cassandra30=3.0.25 \
-Dversion.cassandra311=3.11.11 \
-Dversion.cassandra4=4.0.0
6 changes: 3 additions & 3 deletions cassandra-3.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-ldap-3.0.23</artifactId>
<version>1.0.1</version>
<artifactId>cassandra-ldap-3.0.25</artifactId>
<version>1.0.0</version>

<name>Cassandra LDAP Authenticator for Cassandra 3.0</name>
<description>Pluggable LDAP authentication implementation for Apache Cassandra 3.0</description>

<properties>
<version.cassandra30>3.0.23</version.cassandra30>
<version.cassandra30>3.0.25</version.cassandra30>

<version.shrinkwrap.bom>1.2.6</version.shrinkwrap.bom>
<version.shrinkwrap.resolvers>3.1.3</version.shrinkwrap.resolvers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
public class Cassandra30LDAPIntegrationTest extends AbstractLDAPTest {
@Override
public String getCassandraVersion() {
return System.getProperty("version.cassandra30", "3.0.23");
return System.getProperty("version.cassandra30", "3.0.25");
}

@Override
public String getImplementationGAV() {
return "com.instaclustr:cassandra-ldap-3.0.23:1.0.1";
return "com.instaclustr:cassandra-ldap-3.0.25:1.0.0";
}

@Test
Expand Down
6 changes: 3 additions & 3 deletions cassandra-3.11/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-ldap-3.11.10</artifactId>
<version>1.0.1</version>
<artifactId>cassandra-ldap-3.11.11</artifactId>
<version>1.0.0</version>

<name>Cassandra LDAP Authenticator for Cassandra 3.11</name>
<description>Pluggable LDAP authentication implementation for Apache Cassandra 3.11</description>

<properties>
<version.cassandra311>3.11.10</version.cassandra311>
<version.cassandra311>3.11.11</version.cassandra311>

<version.shrinkwrap.bom>1.2.6</version.shrinkwrap.bom>
<version.shrinkwrap.resolvers>3.1.3</version.shrinkwrap.resolvers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
public class Cassandra311LDAPIntegrationTest extends AbstractLDAPTest {
@Override
public String getCassandraVersion() {
return System.getProperty("version.cassandra311", "3.11.10");
return System.getProperty("version.cassandra311", "3.11.11");
}

@Override
public String getImplementationGAV() {
return "com.instaclustr:cassandra-ldap-3.11.10:1.0.1";
return "com.instaclustr:cassandra-ldap-3.11.11:1.0.0";
}

@Test
Expand Down

0 comments on commit 616a99e

Please sign in to comment.