Revert "Stop managing version of commons-compress where it isn't needed"
This reverts commit 2b85cb0356
.
See gh-39367
This commit is contained in:
parent
34f6220427
commit
5f680ccac0
|
@ -6,7 +6,6 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
|
||||||
|
|
||||||
assertjVersion=3.24.2
|
assertjVersion=3.24.2
|
||||||
commonsCodecVersion=1.15
|
commonsCodecVersion=1.15
|
||||||
commonsCompressVersion=1.21
|
|
||||||
hamcrestVersion=2.2
|
hamcrestVersion=2.2
|
||||||
jacksonVersion=2.15.3
|
jacksonVersion=2.15.3
|
||||||
junitJupiterVersion=5.9.3
|
junitJupiterVersion=5.9.3
|
||||||
|
|
|
@ -34,6 +34,13 @@ bom {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
library("Commons Compress", "1.21") {
|
||||||
|
group("org.apache.commons") {
|
||||||
|
modules = [
|
||||||
|
"commons-compress"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
library("Commons FileUpload", "1.5") {
|
library("Commons FileUpload", "1.5") {
|
||||||
group("commons-fileupload") {
|
group("commons-fileupload") {
|
||||||
modules = [
|
modules = [
|
||||||
|
|
|
@ -22,7 +22,7 @@ dependencies {
|
||||||
api("com.fasterxml.jackson.core:jackson-databind")
|
api("com.fasterxml.jackson.core:jackson-databind")
|
||||||
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
||||||
api("net.java.dev.jna:jna-platform")
|
api("net.java.dev.jna:jna-platform")
|
||||||
api("org.apache.commons:commons-compress:$commonsCompressVersion")
|
api("org.apache.commons:commons-compress")
|
||||||
api("org.apache.httpcomponents.client5:httpclient5")
|
api("org.apache.httpcomponents.client5:httpclient5")
|
||||||
api("org.springframework:spring-core")
|
api("org.springframework:spring-core")
|
||||||
api("org.tomlj:tomlj:1.0.0")
|
api("org.tomlj:tomlj:1.0.0")
|
||||||
|
|
|
@ -34,7 +34,7 @@ dependencies {
|
||||||
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
|
||||||
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
|
||||||
implementation("io.spring.gradle:dependency-management-plugin")
|
implementation("io.spring.gradle:dependency-management-plugin")
|
||||||
implementation("org.apache.commons:commons-compress:$commonsCompressVersion")
|
implementation("org.apache.commons:commons-compress")
|
||||||
implementation("org.springframework:spring-core")
|
implementation("org.springframework:spring-core")
|
||||||
|
|
||||||
optional("org.graalvm.buildtools:native-gradle-plugin")
|
optional("org.graalvm.buildtools:native-gradle-plugin")
|
||||||
|
|
|
@ -20,7 +20,7 @@ configurations {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api("org.apache.commons:commons-compress:$commonsCompressVersion")
|
api("org.apache.commons:commons-compress")
|
||||||
api("org.springframework:spring-core")
|
api("org.springframework:spring-core")
|
||||||
|
|
||||||
compileOnly("ch.qos.logback:logback-classic")
|
compileOnly("ch.qos.logback:logback-classic")
|
||||||
|
|
Loading…
Reference in New Issue