Skip to content

Commit 5fb1b8c

Browse files
authored
FMWK-561 Update dependencies and set version to 1.9.1 (#73)
1 parent f25683f commit 5fb1b8c

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,26 @@
1111
<name>aerospike-jdbc</name>
1212
<description>A JDBC driver for the Aerospike database</description>
1313
<url>https://github.com/aerospike/aerospike-jdbc</url>
14-
<version>1.9.0</version>
14+
<version>1.9.1</version>
1515

1616
<properties>
1717
<skipTests>false</skipTests>
1818
<java.version>1.8</java.version>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1920

20-
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
21-
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
22-
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
21+
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
22+
<maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version>
23+
<nexus-staging-maven-plugin.version>1.6.14</nexus-staging-maven-plugin.version>
2324
<maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
24-
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
25+
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
2526
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
26-
<maven-shade-plugin.version>3.4.0</maven-shade-plugin.version>
27-
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
27+
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
2828

29-
<aerospike-client.version>8.1.1</aerospike-client.version>
30-
<netty.version>4.1.110.Final</netty.version>
31-
<jackson.version>2.17.1</jackson.version>
29+
<aerospike-client.version>8.1.4</aerospike-client.version>
30+
<netty.version>4.1.113.Final</netty.version>
31+
<jackson.version>2.17.2</jackson.version>
3232
<calcite.version>1.37.0</calcite.version>
33-
<guava.version>33.2.1-jre</guava.version>
33+
<guava.version>33.3.0-jre</guava.version>
3434
<httpclient.version>4.5.14</httpclient.version>
3535

3636
<assertj.version>3.25.0</assertj.version>
@@ -234,7 +234,7 @@
234234
</execution>
235235
</executions>
236236
<configuration>
237-
<finalName>uber-${artifactId}-${version}</finalName>
237+
<finalName>uber-${project.artifactId}-${project.version}</finalName>
238238
<minimizeJar>true</minimizeJar>
239239
<createDependencyReducedPom>false</createDependencyReducedPom>
240240
<filters>

src/main/java/com/aerospike/jdbc/util/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public final class Constants {
1212
public static final String UNSUPPORTED_QUERY_TYPE_MESSAGE = "Unsupported query type";
1313

1414
// Driver version
15-
public static final String DRIVER_VERSION = "1.9.0";
15+
public static final String DRIVER_VERSION = "1.9.1";
1616
public static final int DRIVER_MAJOR_VERSION = 1;
1717
public static final int DRIVER_MINOR_VERSION = 9;
1818

0 commit comments

Comments
 (0)