chore(deps): update all java deps

This commit is contained in:
Ludovic DEHON
2023-09-21 10:30:49 +02:00
parent 59b85f3855
commit 2a6a06b6c0
15 changed files with 25 additions and 23 deletions

1
.gitignore vendored
View File

@@ -35,6 +35,7 @@ webserver/src/main/resources/ui
yarn.lock
ui/coverage
ui/stats.html
ui/.frontend-gradle-plugin
### Docker
/.env

View File

@@ -8,14 +8,14 @@ plugins {
// test
id 'com.adarshr.test-logger' version '3.2.0'
id "org.sonarqube" version "4.2.1.3168"
id "org.sonarqube" version "4.3.1.3277"
id 'jacoco-report-aggregation'
// helper
id "com.github.ben-manes.versions" version "0.47.0"
id "com.github.ben-manes.versions" version "0.48.0"
// front
id 'org.siouan.frontend-jdk11' version '6.0.0' apply false
id 'org.siouan.frontend-jdk11' version '8.0.0' apply false
// release
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
@@ -75,8 +75,8 @@ allprojects {
force("org.slf4j:slf4j-api:1.7.36")
// ugly bug on google cloud plugins
force("com.google.protobuf:protobuf-java:3.22.3")
force("com.google.protobuf:protobuf-java-util:3.22.3")
force("com.google.protobuf:protobuf-java:3.23.3")
force("com.google.protobuf:protobuf-java-util:3.23.3")
// ugly bug for elastic plugins
force("org.apache.httpcomponents:httpclient:4.5.13")
@@ -86,6 +86,7 @@ allprojects {
force('org.bouncycastle:bcpg-jdk15on:1.70')
// ugly bug for jackson
force("com.fasterxml.jackson:jackson-bom:" + jacksonVersion)
force("com.fasterxml.jackson.core:jackson-bom:" + jacksonVersion)
force("com.fasterxml.jackson.core:jackson-core:" + jacksonVersion)
force("com.fasterxml.jackson.core:jackson-databind:" + jacksonVersion)
@@ -139,9 +140,9 @@ allprojects {
implementation group: 'net.thisptr', name: 'jackson-jq', version: '1.0.0-preview.20230409'
// exposed utils
api group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'
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: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
api group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
api "io.swagger.core.v3:swagger-annotations"
}
}
@@ -306,7 +307,7 @@ subprojects {
}
jacoco {
toolVersion = "0.8.8"
toolVersion = "0.8.9"
}
jacocoTestReport {

View File

@@ -1,4 +1,4 @@
id: invalids
namespace: io.kestra.tests
tasks:
tasks: []

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.3'
implementation 'com.github.oshi:oshi-core:6.4.5'
implementation 'io.pebbletemplates:pebble:3.2.1'
// scheduler

View File

@@ -4,8 +4,6 @@ namespace: io.kestra.tests
listeners:
- conditions:
- type: io.kestra.core.models.conditions.types.ExecutionStatusCondition
in:
-
tasks: []
- tasks: []

View File

@@ -1,8 +1,8 @@
version=0.12.0-SNAPSHOT
jacksonVersion=2.14.2
micronautVersion=3.9.3
lombokVersion=1.18.28
jacksonVersion=2.15.2
micronautVersion=3.10.1
lombokVersion=1.18.30
org.gradle.parallel=true
org.gradle.caching=true

Binary file not shown.

View File

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

7
gradlew vendored
View File

@@ -85,9 +85,6 @@ done
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -197,6 +194,10 @@ if "$cygwin" || "$msys" ; then
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in

0
gradlew.bat vendored Executable file → Normal file
View File

View File

@@ -5,7 +5,7 @@ dependencies {
implementation project(":jdbc")
implementation("io.micronaut.sql:micronaut-jooq")
runtimeOnly("com.h2database:h2:2.1.214")
runtimeOnly("com.h2database:h2:2.2.224")
testImplementation project(':core').sourceSets.test.output
testImplementation project(':jdbc').sourceSets.test.output

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.20.0')
runtimeOnly('org.flywaydb:flyway-mysql:9.22.1')
testImplementation project(':core').sourceSets.test.output
testImplementation project(':jdbc').sourceSets.test.output

View File

@@ -5,7 +5,7 @@ plugins {
publishSonatypePublicationPublicationToSonatypeRepository.enabled = false
frontend {
nodeVersion = '18.12.1'
nodeVersion = '18.18.0'
// due to vue-chart-3: https://github.com/victorgarciaesgi/vue-chart-3/pull/138
installScript = 'install --legacy-peer-deps'
assembleScript = 'run build'

View File

@@ -2,6 +2,7 @@
"name": "kestra",
"version": "0.1.0",
"private": true,
"packageManager": "npm@9.8.1",
"scripts": {
"dev": "vite --host",
"build": "vite build --emptyOutDir",

View File

@@ -23,7 +23,7 @@ dependencies {
// test
testImplementation project(':core').sourceSets.test.output
testImplementation project(':storage-local')
testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.0")
testImplementation("com.github.tomakehurst:wiremock-jre8:3.0.1")
testImplementation project(':jdbc')
testImplementation project(':jdbc').sourceSets.test.output