Update dependencies
Change-Id: I5db28e66ce1a26b1d7600a0e09ae858c3173e914
This commit is contained in:
parent
b5493330b4
commit
ff3dd7786a
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.6-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
20
gradlew.bat
vendored
20
gradlew.bat
vendored
@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
|
|||||||
%JAVA_EXE% -version >NUL 2>&1
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
if %ERRORLEVEL% equ 0 goto execute
|
if %ERRORLEVEL% equ 0 goto execute
|
||||||
|
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation.
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
|||||||
|
|
||||||
if exist "%JAVA_EXE%" goto execute
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation.
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
|
@ -12,12 +12,12 @@ plugins {
|
|||||||
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
||||||
// Use this to check for newer versions of dependency libraries via
|
// Use this to check for newer versions of dependency libraries via
|
||||||
// ./gradlew dependencyUpdates
|
// ./gradlew dependencyUpdates
|
||||||
id "com.github.ben-manes.versions" version "0.50.0"
|
id "com.github.ben-manes.versions" version "0.51.0"
|
||||||
// add jshell support (https://github.com/mrsarm/jshell-plugin):
|
// add jshell support (https://github.com/mrsarm/jshell-plugin):
|
||||||
// rlwrap ./gradlew --console plain jshell
|
// rlwrap ./gradlew --console plain jshell
|
||||||
id "com.github.mrsarm.jshell.plugin" version "1.2.1"
|
id "com.github.mrsarm.jshell.plugin" version "1.2.1"
|
||||||
// https://docs.freefair.io/gradle-plugins/8.4/reference/#_lombok
|
// https://docs.freefair.io/gradle-plugins/8.4/reference/#_lombok
|
||||||
id "io.freefair.lombok" version "8.4"
|
id "io.freefair.lombok" version "8.6"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -38,9 +38,9 @@ repositories {
|
|||||||
dependencies {
|
dependencies {
|
||||||
// JSON parsing, also used by the data classes defined in sal-common:
|
// JSON parsing, also used by the data classes defined in sal-common:
|
||||||
// https://github.com/FasterXML/jackson
|
// https://github.com/FasterXML/jackson
|
||||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
|
||||||
// YAML parsing: https://github.com/FasterXML/jackson-dataformats-text
|
// YAML parsing: https://github.com/FasterXML/jackson-dataformats-text
|
||||||
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.16.1'
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.0'
|
||||||
|
|
||||||
// Command-line parsing: https://picocli.info
|
// Command-line parsing: https://picocli.info
|
||||||
implementation 'info.picocli:picocli:4.7.5'
|
implementation 'info.picocli:picocli:4.7.5'
|
||||||
@ -49,13 +49,15 @@ dependencies {
|
|||||||
implementation 'org.ow2.proactive:sal-common:13.1.0-SNAPSHOT'
|
implementation 'org.ow2.proactive:sal-common:13.1.0-SNAPSHOT'
|
||||||
|
|
||||||
// Logging: SLF4J (implemented by Logback)
|
// Logging: SLF4J (implemented by Logback)
|
||||||
implementation 'ch.qos.logback:logback-classic:1.4.14'
|
implementation 'ch.qos.logback:logback-classic:1.5.6'
|
||||||
// Include logstash-logback-encoder for JSON formatting
|
// Include logstash-logback-encoder for JSON formatting
|
||||||
implementation 'net.logstash.logback:logstash-logback-encoder:7.4'
|
implementation 'net.logstash.logback:logstash-logback-encoder:7.4'
|
||||||
|
|
||||||
// the EXN Middleware:
|
// the EXN Middleware:
|
||||||
// https://openproject.nebulouscloud.eu/projects/nebulous-collaboration-hub/wiki/asynchronous-messaging-specification
|
// https://openproject.nebulouscloud.eu/projects/nebulous-collaboration-hub/wiki/asynchronous-messaging-specification
|
||||||
implementation 'eu.nebulouscloud:exn-connector-java:1.0-SNAPSHOT'
|
implementation ('eu.nebulouscloud:exn-connector-java:1.0-SNAPSHOT') {
|
||||||
|
exclude group: 'org.slf4j', module: 'slf4j-simple'
|
||||||
|
}
|
||||||
|
|
||||||
// Analysing KubeVela
|
// Analysing KubeVela
|
||||||
implementation project(':nebulous-requirements-extractor')
|
implementation project(':nebulous-requirements-extractor')
|
||||||
@ -63,7 +65,7 @@ dependencies {
|
|||||||
// Use JUnit Jupiter for testing.
|
// Use JUnit Jupiter for testing.
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.1'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.1'
|
||||||
testImplementation 'org.wiremock:wiremock:3.3.1'
|
testImplementation 'org.wiremock:wiremock:3.5.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply a specific Java toolchain to ease working on different environments.
|
// Apply a specific Java toolchain to ease working on different environments.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user