Skip to content

Commit 5f680cc

Browse files
committed
Revert "Stop managing version of commons-compress where it isn't needed"
This reverts commit 2b85cb0. See gh-39367
1 parent 34f6220 commit 5f680cc

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.15
9-
commonsCompressVersion=1.21
109
hamcrestVersion=2.2
1110
jacksonVersion=2.15.3
1211
junitJupiterVersion=5.9.3

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
@@ -22,7 +22,7 @@ dependencies {
2222
api("com.fasterxml.jackson.core:jackson-databind")
2323
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
2424
api("net.java.dev.jna:jna-platform")
25-
api("org.apache.commons:commons-compress:$commonsCompressVersion")
25+
api("org.apache.commons:commons-compress")
2626
api("org.apache.httpcomponents.client5:httpclient5")
2727
api("org.springframework:spring-core")
2828
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
@@ -34,7 +34,7 @@ dependencies {
3434
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
3535
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
3636
implementation("io.spring.gradle:dependency-management-plugin")
37-
implementation("org.apache.commons:commons-compress:$commonsCompressVersion")
37+
implementation("org.apache.commons:commons-compress")
3838
implementation("org.springframework:spring-core")
3939

4040
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
@@ -20,7 +20,7 @@ configurations {
2020
}
2121

2222
dependencies {
23-
api("org.apache.commons:commons-compress:$commonsCompressVersion")
23+
api("org.apache.commons:commons-compress")
2424
api("org.springframework:spring-core")
2525

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

0 commit comments

Comments
 (0)