commit
9a5b3b3a2b
|
|
@ -6,7 +6,6 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
|
||||||
|
|
||||||
assertjVersion=3.25.1
|
assertjVersion=3.25.1
|
||||||
commonsCodecVersion=1.16.0
|
commonsCodecVersion=1.16.0
|
||||||
commonsCompressVersion=1.25.0
|
|
||||||
hamcrestVersion=2.2
|
hamcrestVersion=2.2
|
||||||
jacksonVersion=2.16.1
|
jacksonVersion=2.16.1
|
||||||
junitJupiterVersion=5.10.1
|
junitJupiterVersion=5.10.1
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,13 @@ bom {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
library("Commons Compress", "1.25.0") {
|
||||||
|
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 = [
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,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")
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,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")
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,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