mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
chore(deps): update all java deps
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -35,6 +35,7 @@ webserver/src/main/resources/ui
|
|||||||
yarn.lock
|
yarn.lock
|
||||||
ui/coverage
|
ui/coverage
|
||||||
ui/stats.html
|
ui/stats.html
|
||||||
|
ui/.frontend-gradle-plugin
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
/.env
|
/.env
|
||||||
|
|||||||
17
build.gradle
17
build.gradle
@@ -8,14 +8,14 @@ plugins {
|
|||||||
|
|
||||||
// test
|
// test
|
||||||
id 'com.adarshr.test-logger' version '3.2.0'
|
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'
|
id 'jacoco-report-aggregation'
|
||||||
|
|
||||||
// helper
|
// helper
|
||||||
id "com.github.ben-manes.versions" version "0.47.0"
|
id "com.github.ben-manes.versions" version "0.48.0"
|
||||||
|
|
||||||
// front
|
// front
|
||||||
id 'org.siouan.frontend-jdk11' version '6.0.0' apply false
|
id 'org.siouan.frontend-jdk11' version '8.0.0' apply false
|
||||||
|
|
||||||
// release
|
// release
|
||||||
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
|
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
|
||||||
@@ -75,8 +75,8 @@ allprojects {
|
|||||||
force("org.slf4j:slf4j-api:1.7.36")
|
force("org.slf4j:slf4j-api:1.7.36")
|
||||||
|
|
||||||
// ugly bug on google cloud plugins
|
// ugly bug on google cloud plugins
|
||||||
force("com.google.protobuf:protobuf-java:3.22.3")
|
force("com.google.protobuf:protobuf-java:3.23.3")
|
||||||
force("com.google.protobuf:protobuf-java-util:3.22.3")
|
force("com.google.protobuf:protobuf-java-util:3.23.3")
|
||||||
|
|
||||||
// ugly bug for elastic plugins
|
// ugly bug for elastic plugins
|
||||||
force("org.apache.httpcomponents:httpclient:4.5.13")
|
force("org.apache.httpcomponents:httpclient:4.5.13")
|
||||||
@@ -86,6 +86,7 @@ allprojects {
|
|||||||
force('org.bouncycastle:bcpg-jdk15on:1.70')
|
force('org.bouncycastle:bcpg-jdk15on:1.70')
|
||||||
|
|
||||||
// ugly bug for jackson
|
// 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-bom:" + jacksonVersion)
|
||||||
force("com.fasterxml.jackson.core:jackson-core:" + jacksonVersion)
|
force("com.fasterxml.jackson.core:jackson-core:" + jacksonVersion)
|
||||||
force("com.fasterxml.jackson.core:jackson-databind:" + 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'
|
implementation group: 'net.thisptr', name: 'jackson-jq', version: '1.0.0-preview.20230409'
|
||||||
|
|
||||||
// exposed utils
|
// 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: '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"
|
api "io.swagger.core.v3:swagger-annotations"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -306,7 +307,7 @@ subprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
jacoco {
|
jacoco {
|
||||||
toolVersion = "0.8.8"
|
toolVersion = "0.8.9"
|
||||||
}
|
}
|
||||||
|
|
||||||
jacocoTestReport {
|
jacocoTestReport {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
id: invalids
|
id: invalids
|
||||||
namespace: io.kestra.tests
|
namespace: io.kestra.tests
|
||||||
tasks:
|
tasks: []
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ dependencies {
|
|||||||
|
|
||||||
// utils
|
// utils
|
||||||
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'
|
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'
|
implementation 'io.pebbletemplates:pebble:3.2.1'
|
||||||
|
|
||||||
// scheduler
|
// scheduler
|
||||||
|
|||||||
@@ -4,8 +4,6 @@ namespace: io.kestra.tests
|
|||||||
listeners:
|
listeners:
|
||||||
- conditions:
|
- conditions:
|
||||||
- type: io.kestra.core.models.conditions.types.ExecutionStatusCondition
|
- type: io.kestra.core.models.conditions.types.ExecutionStatusCondition
|
||||||
in:
|
|
||||||
-
|
|
||||||
tasks: []
|
tasks: []
|
||||||
|
|
||||||
- tasks: []
|
- tasks: []
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
version=0.12.0-SNAPSHOT
|
version=0.12.0-SNAPSHOT
|
||||||
|
|
||||||
jacksonVersion=2.14.2
|
jacksonVersion=2.15.2
|
||||||
micronautVersion=3.9.3
|
micronautVersion=3.10.1
|
||||||
lombokVersion=1.18.28
|
lombokVersion=1.18.30
|
||||||
|
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
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
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
7
gradlew
vendored
7
gradlew
vendored
@@ -85,9 +85,6 @@ done
|
|||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
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.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
|
|
||||||
@@ -197,6 +194,10 @@ if "$cygwin" || "$msys" ; then
|
|||||||
done
|
done
|
||||||
fi
|
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;
|
# Collect all arguments for the java command;
|
||||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||||
# shell script including quotes and variable substitutions, so put them in
|
# shell script including quotes and variable substitutions, so put them in
|
||||||
|
|||||||
0
gradlew.bat
vendored
Executable file → Normal file
0
gradlew.bat
vendored
Executable file → Normal file
@@ -5,7 +5,7 @@ dependencies {
|
|||||||
implementation project(":jdbc")
|
implementation project(":jdbc")
|
||||||
|
|
||||||
implementation("io.micronaut.sql:micronaut-jooq")
|
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(':core').sourceSets.test.output
|
||||||
testImplementation project(':jdbc').sourceSets.test.output
|
testImplementation project(':jdbc').sourceSets.test.output
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation("io.micronaut.sql:micronaut-jooq")
|
implementation("io.micronaut.sql:micronaut-jooq")
|
||||||
runtimeOnly("mysql:mysql-connector-java:8.0.33")
|
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(':core').sourceSets.test.output
|
||||||
testImplementation project(':jdbc').sourceSets.test.output
|
testImplementation project(':jdbc').sourceSets.test.output
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ plugins {
|
|||||||
publishSonatypePublicationPublicationToSonatypeRepository.enabled = false
|
publishSonatypePublicationPublicationToSonatypeRepository.enabled = false
|
||||||
|
|
||||||
frontend {
|
frontend {
|
||||||
nodeVersion = '18.12.1'
|
nodeVersion = '18.18.0'
|
||||||
// due to vue-chart-3: https://github.com/victorgarciaesgi/vue-chart-3/pull/138
|
// due to vue-chart-3: https://github.com/victorgarciaesgi/vue-chart-3/pull/138
|
||||||
installScript = 'install --legacy-peer-deps'
|
installScript = 'install --legacy-peer-deps'
|
||||||
assembleScript = 'run build'
|
assembleScript = 'run build'
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
"name": "kestra",
|
"name": "kestra",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"packageManager": "npm@9.8.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --host",
|
"dev": "vite --host",
|
||||||
"build": "vite build --emptyOutDir",
|
"build": "vite build --emptyOutDir",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ dependencies {
|
|||||||
// test
|
// test
|
||||||
testImplementation project(':core').sourceSets.test.output
|
testImplementation project(':core').sourceSets.test.output
|
||||||
testImplementation project(':storage-local')
|
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')
|
||||||
testImplementation project(':jdbc').sourceSets.test.output
|
testImplementation project(':jdbc').sourceSets.test.output
|
||||||
|
|||||||
Reference in New Issue
Block a user