Skip to content

Commit 11ab653

Browse files
committed
advance2
1 parent b9469f8 commit 11ab653

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/dependency-review-generate.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-java@v4
1515
with:
16-
distribution: temurin
17-
java-version: 17
18-
16+
distribution: zulu
17+
java-version: 8
1918
- name: Generate and save dependency graph
2019
uses: gradle/actions/dependency-submission@v3
2120
with:

gradle/libs.versions.toml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ minio = { module = "io.minio:minio", version = "8.5.11" }
88
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version = "5.10.2" }
99
okio = { module = "com.squareup.okio:okio", version = "3.4.0" }
1010
jackson = { module = "com.fasterxml.jackson.core:jackson-databind", version = "2.9.9" }
11+
spring = { module = "org.springframework.boot:spring-boot-starter-web", version = "2.5.11" }
1112

1213
[plugins]
1314
versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }

lib/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ dependencies {
1111
implementation(libs.commons.text)
1212
implementation(libs.minio)
1313
implementation(libs.jackson)
14+
implementation(libs.spring)
1415

1516
constraints {
1617
// Force a newer version of commons-compress in transitive resolution

0 commit comments

Comments
 (0)