Skip to content

Commit 84e390a

Browse files
committed
Merge branch '3.1.x' into 3.2.x
See gh-39368
2 parents 36d850d + 5f680cc commit 84e390a

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
66

77
assertjVersion=3.24.2
88
commonsCodecVersion=1.16.0
9-
commonsCompressVersion=1.21
109
hamcrestVersion=2.2
1110
jacksonVersion=2.15.3
1211
junitJupiterVersion=5.10.1

spring-boot-project/spring-boot-parent/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ bom {
3434
]
3535
}
3636
}
37+
library("Commons Compress", "1.21") {
38+
group("org.apache.commons") {
39+
modules = [
40+
"commons-compress"
41+
]
42+
}
43+
}
3744
library("Commons FileUpload", "1.5") {
3845
group("commons-fileupload") {
3946
modules = [

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
api("com.fasterxml.jackson.core:jackson-databind")
2828
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
2929
api("net.java.dev.jna:jna-platform")
30-
api("org.apache.commons:commons-compress:$commonsCompressVersion")
30+
api("org.apache.commons:commons-compress")
3131
api("org.apache.httpcomponents.client5:httpclient5")
3232
api("org.springframework:spring-core")
3333
api("org.tomlj:tomlj:1.0.0")

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
4040
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
4141
implementation("io.spring.gradle:dependency-management-plugin")
42-
implementation("org.apache.commons:commons-compress:$commonsCompressVersion")
42+
implementation("org.apache.commons:commons-compress")
4343
implementation("org.springframework:spring-core")
4444

4545
optional("org.graalvm.buildtools:native-gradle-plugin")

spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ configurations {
3535
}
3636

3737
dependencies {
38-
api("org.apache.commons:commons-compress:$commonsCompressVersion")
38+
api("org.apache.commons:commons-compress")
3939
api("org.springframework:spring-core")
4040

4141
compileOnly("ch.qos.logback:logback-classic")

0 commit comments

Comments
 (0)