From ead42e2b00194e8b968e8729374d6679f3cf7541 Mon Sep 17 00:00:00 2001 From: LamGC Date: Thu, 2 Sep 2021 14:45:54 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E6=9B=B4=E6=96=B0=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E9=A1=B9=E7=89=88=E6=9C=AC.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 已确认以下依赖项变更不会影响到当前项目的所有功能: - org.slf4j:slf4j-api (1.7.31 -> 1.7.32) - com.oracle.oci.sdk:oci-java-sdk-core (2.3.2 -> 2.4.0) - com.oracle.oci.sdk:oci-java-sdk-identity (2.3.2 -> 2.4.0) - org.codehaus.groovy:groovy-all (3.0.7 -> 3.0.8) - com.google.code.gson:gson (2.8.7 -> 2.8.8) - org.junit.jupiter:junit-jupiter-api (5.7.0 -> 5.7.2) - org.junit.jupiter:junit-jupiter-engine (5.7.0 -> 5.7.2) --- build.gradle | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 33a8f29..7e99a69 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ +//file:noinspection GradlePackageUpdate SpringBoot 的版本由插件管理. plugins { id 'java' - id 'org.springframework.boot' version '2.5.3' + id 'org.springframework.boot' version '2.5.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'jacoco' } @@ -14,14 +15,14 @@ repositories { } dependencies { - def ociSdkVer = '2.3.2' + def ociSdkVer = '2.4.0' def sshdVer = '2.7.0' def bouncyCastleVer = '1.69' implementation 'org.springframework.boot:spring-boot-starter' testImplementation 'org.springframework.boot:spring-boot-starter-test' - implementation 'org.slf4j:slf4j-api:1.7.31' + implementation 'org.slf4j:slf4j-api:1.7.32' implementation "com.oracle.oci.sdk:oci-java-sdk-core:${ociSdkVer}" implementation "com.oracle.oci.sdk:oci-java-sdk-identity:${ociSdkVer}" @@ -36,12 +37,12 @@ dependencies { implementation "net.i2p.crypto:eddsa:0.3.0" - implementation 'org.codehaus.groovy:groovy-all:3.0.7' + implementation 'org.codehaus.groovy:groovy-all:3.0.8' - implementation 'com.google.code.gson:gson:2.8.7' + implementation 'com.google.code.gson:gson:2.8.8' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2' } test {