Skip to content

Commit 6881969

Browse files
authored
deps: Update project dependencies to latest (#2249)
* deps: Update project dependencies to latest * chore: Remove deprecated reactor.util.annotation.NonNull usage The reactor.util.annotation.NonNull annotation has been deprecated and is removed from CloudSqlConnectionFactory and GcpConnectionFactoryProvider. This resolves compiler warnings during the build.
1 parent efa8bb9 commit 6881969

File tree

11 files changed

+58
-62
lines changed

11 files changed

+58
-62
lines changed

build.sh

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
SCRIPT_DIR=$(cd -P "$(dirname "$0")" >/dev/null 2>&1 && pwd)
1919
SCRIPT_FILE="${SCRIPT_DIR}/$(basename "$0")"
2020

21+
mvn_cmd=$SCRIPT_DIR/mvnw
22+
2123
##
2224
## Local Development
2325
##
@@ -26,12 +28,12 @@ SCRIPT_FILE="${SCRIPT_DIR}/$(basename "$0")"
2628

2729
## clean - Cleans the build output
2830
function clean() {
29-
mvn clean
31+
$mvn_cmd clean
3032
}
3133

3234
## build - Builds the project without running tests.
3335
function build() {
34-
mvn install -DskipTests=true
36+
$mvn_cmd install -DskipTests=true
3537
}
3638

3739
## test - Runs local unit tests.
@@ -42,7 +44,7 @@ function test() {
4244
sudo ifconfig lo0 alias 127.0.0.2 up
4345
sudo ifconfig lo0 alias 127.0.0.3 up
4446
fi
45-
mvn -P coverage test
47+
$mvn_cmd -P coverage test
4648
}
4749

4850
## e2e - Runs end-to-end integration tests.
@@ -66,18 +68,18 @@ function e2e_graalvm() {
6668

6769
## fix - Fixes java code format.
6870
function fix() {
69-
mvn com.coveo:fmt-maven-plugin:format
71+
$mvn_cmd com.coveo:fmt-maven-plugin:format
7072
}
7173

7274
## lint - runs the java lint
7375
function lint() {
74-
mvn -P lint install -DskipTests=true
76+
$mvn_cmd -P lint install -DskipTests=true
7577
}
7678

7779

7880
## deps - updates dependencies to the latest version
7981
function deps() {
80-
mvn versions:use-latest-versions
82+
$mvn_cmd versions:use-latest-versions
8183
find . -name 'pom.xml.versionsBackup' -print0 | xargs -0 rm -f
8284
}
8385

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@
6161
<dependency>
6262
<groupId>com.github.jnr</groupId>
6363
<artifactId>jnr-enxio</artifactId>
64-
<version>0.32.18</version>
64+
<version>0.32.19</version>
6565
</dependency>
6666

6767
<dependency>
6868
<groupId>com.github.jnr</groupId>
6969
<artifactId>jnr-unixsocket</artifactId>
70-
<version>0.38.23</version>
70+
<version>0.38.24</version>
7171
<exclusions>
7272
<exclusion>
7373
<groupId>org.ow2.asm</groupId>

jdbc/mariadb/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.mariadb.jdbc</groupId>
5151
<artifactId>mariadb-java-client</artifactId>
52-
<version>3.5.5</version>
52+
<version>3.5.7</version>
5353
<exclusions>
5454
<exclusion>
5555
<groupId>org.slf4j</groupId>
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>org.mariadb.jdbc</groupId>
8989
<artifactId>mariadb-java-client</artifactId>
90-
<version>3.5.5</version>
90+
<version>3.5.7</version>
9191
</dependency>
9292
</dependencies>
9393
</profile>
@@ -101,7 +101,7 @@
101101
<dependency>
102102
<groupId>org.mariadb.jdbc</groupId>
103103
<artifactId>mariadb-java-client</artifactId>
104-
<version>3.5.5</version>
104+
<version>3.5.7</version>
105105
</dependency>
106106
</dependencies>
107107
</profile>

jdbc/mysql-j-8/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>com.mysql</groupId>
5555
<artifactId>mysql-connector-j</artifactId>
56-
<version>9.4.0</version>
56+
<version>9.5.0</version>
5757
<scope>provided</scope>
5858
</dependency>
5959
<dependency>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>com.mysql</groupId>
8888
<artifactId>mysql-connector-j</artifactId>
89-
<version>9.4.0</version>
89+
<version>9.5.0</version>
9090
</dependency>
9191
</dependencies>
9292
</profile>
@@ -100,7 +100,7 @@
100100
<dependency>
101101
<groupId>com.mysql</groupId>
102102
<artifactId>mysql-connector-j</artifactId>
103-
<version>9.4.0</version>
103+
<version>9.5.0</version>
104104
</dependency>
105105
</dependencies>
106106
</profile>

jdbc/postgres/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.postgresql</groupId>
5151
<artifactId>postgresql</artifactId>
52-
<version>42.7.7</version>
52+
<version>42.7.8</version>
5353
<scope>provided</scope>
5454
</dependency>
5555
<dependency>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>org.postgresql</groupId>
8888
<artifactId>postgresql</artifactId>
89-
<version>42.7.7</version>
89+
<version>42.7.8</version>
9090
</dependency>
9191
</dependencies>
9292
</profile>
@@ -100,7 +100,7 @@
100100
<dependency>
101101
<groupId>org.postgresql</groupId>
102102
<artifactId>postgresql</artifactId>
103-
<version>42.7.7</version>
103+
<version>42.7.8</version>
104104
</dependency>
105105
</dependencies>
106106
</profile>

jdbc/sqlserver/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.microsoft.sqlserver</groupId>
5151
<artifactId>mssql-jdbc</artifactId>
52-
<version>13.2.0.jre8</version>
52+
<version>13.2.1.jre8</version>
5353
<scope>provided</scope>
5454
<exclusions>
5555
<exclusion>
@@ -96,7 +96,7 @@
9696
<dependency>
9797
<groupId>com.microsoft.sqlserver</groupId>
9898
<artifactId>mssql-jdbc</artifactId>
99-
<version>13.2.0.jre8</version>
99+
<version>13.2.1.jre8</version>
100100
</dependency>
101101
</dependencies>
102102
</profile>

0 commit comments

Comments
 (0)