chore(deps): update all java deps

This commit is contained in:
Ludovic DEHON
2023-10-09 15:37:32 +02:00
parent ebce1260dc
commit 9fb78b04a3
6 changed files with 13 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ plugins {
// test
id 'com.adarshr.test-logger' version '3.2.0'
id "org.sonarqube" version "4.3.1.3277"
id "org.sonarqube" version "4.4.1.3373"
id 'jacoco-report-aggregation'
// helper
@@ -142,7 +142,7 @@ allprojects {
// exposed utils
api group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
api group: 'commons-io', name: 'commons-io', version: '2.13.0'
api group: 'commons-io', name: 'commons-io', version: '2.14.0'
api group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
api "io.swagger.core.v3:swagger-annotations"
}
@@ -171,7 +171,7 @@ subprojects {
testImplementation "io.micronaut.test:micronaut-test-junit5"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testImplementation "org.junit-pioneer:junit-pioneer:2.0.1"
testImplementation "org.junit-pioneer:junit-pioneer:2.1.0"
// hamcrest
testImplementation 'org.hamcrest:hamcrest:2.2'

View File

@@ -20,7 +20,7 @@ dependencies {
// utils
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'
implementation 'com.github.oshi:oshi-core:6.4.5'
implementation 'com.github.oshi:oshi-core:6.4.6'
implementation 'io.pebbletemplates:pebble:3.2.1'
// scheduler

Binary file not shown.

View File

@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

8
gradlew vendored
View File

@@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -130,10 +131,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.

View File

@@ -6,7 +6,7 @@ dependencies {
implementation("io.micronaut.sql:micronaut-jooq")
runtimeOnly("mysql:mysql-connector-java:8.0.33")
runtimeOnly('org.flywaydb:flyway-mysql:9.22.1')
runtimeOnly('org.flywaydb:flyway-mysql:9.22.2')
testImplementation project(':core').sourceSets.test.output
testImplementation project(':jdbc').sourceSets.test.output