|
11 | 11 | <name>aerospike-jdbc</name> |
12 | 12 | <description>A JDBC driver for the Aerospike database</description> |
13 | 13 | <url>https://github.com/aerospike/aerospike-jdbc</url> |
14 | | - <version>1.10.1</version> |
| 14 | + <version>2.0.0</version> |
15 | 15 |
|
16 | 16 | <properties> |
17 | 17 | <skipTests>false</skipTests> |
|
20 | 20 |
|
21 | 21 | <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
22 | 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> |
24 | 23 | <maven-javadoc-plugin.version>3.11.1</maven-javadoc-plugin.version> |
25 | 24 | <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
26 | 25 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
27 | 26 | <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> |
| 27 | + <central.publishing.maven.plugin>0.9.0</central.publishing.maven.plugin> |
28 | 28 |
|
29 | | - <aerospike-client.version>9.0.5</aerospike-client.version> |
30 | | - <netty.version>4.1.119.Final</netty.version> |
31 | | - <jackson.version>2.18.3</jackson.version> |
32 | | - <calcite.version>1.39.0</calcite.version> |
33 | | - <guava.version>33.4.0-jre</guava.version> |
| 29 | + <aerospike-client.version>9.2.0</aerospike-client.version> |
| 30 | + <netty.version>4.1.128.Final</netty.version> |
| 31 | + <jackson.version>2.19.2</jackson.version> |
| 32 | + <calcite.version>1.40.0</calcite.version> |
| 33 | + <guava.version>33.5.0-jre</guava.version> |
34 | 34 | <httpclient.version>4.5.14</httpclient.version> |
35 | 35 |
|
36 | | - <assertj.version>3.25.0</assertj.version> |
| 36 | + <assertj.version>3.27.6</assertj.version> |
37 | 37 | <testng.version>7.5.1</testng.version> <!-- latest for JDK 8 --> |
38 | 38 | <jdbi.version>3.37.1</jdbi.version> <!-- latest for JDK 8 --> |
39 | 39 | </properties> |
|
121 | 121 | <artifactId>guava</artifactId> |
122 | 122 | <version>${guava.version}</version> |
123 | 123 | </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>com.google.code.findbugs</groupId> |
| 126 | + <artifactId>jsr305</artifactId> |
| 127 | + <version>3.0.2</version> |
| 128 | + </dependency> |
124 | 129 |
|
125 | 130 | <dependency> |
126 | 131 | <groupId>org.apache.httpcomponents</groupId> |
|
170 | 175 | </configuration> |
171 | 176 | </plugin> |
172 | 177 |
|
173 | | - <plugin> |
174 | | - <groupId>org.sonatype.plugins</groupId> |
175 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
176 | | - <version>${nexus-staging-maven-plugin.version}</version> |
177 | | - <extensions>true</extensions> |
178 | | - <configuration> |
179 | | - <serverId>ossrh</serverId> |
180 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
181 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
182 | | - </configuration> |
183 | | - </plugin> |
184 | | - |
185 | 178 | <plugin> |
186 | 179 | <groupId>org.apache.maven.plugins</groupId> |
187 | 180 | <artifactId>maven-shade-plugin</artifactId> |
|
271 | 264 | <skipTests>${skipTests}</skipTests> |
272 | 265 | </configuration> |
273 | 266 | </plugin> |
| 267 | + |
| 268 | + <plugin> |
| 269 | + <groupId>org.sonatype.central</groupId> |
| 270 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 271 | + <version>${central.publishing.maven.plugin}</version> |
| 272 | + <extensions>true</extensions> |
| 273 | + <configuration> |
| 274 | + <publishingServerId>central</publishingServerId> |
| 275 | + </configuration> |
| 276 | + </plugin> |
274 | 277 | </plugins> |
275 | 278 | </build> |
276 | 279 |
|
|
0 commit comments