Upgrade to Gradle 4.4 (and Apache HttpClient 4.5.4)
Issue: SPR-16237
This commit is contained in:
parent
767ea9db83
commit
d198626618
|
@ -274,7 +274,7 @@ configure(rootProject) {
|
||||||
|
|
||||||
task wrapper(type: Wrapper) {
|
task wrapper(type: Wrapper) {
|
||||||
description = "Generates gradlew[.bat] scripts"
|
description = "Generates gradlew[.bat] scripts"
|
||||||
gradleVersion = '4.3.1'
|
gradleVersion = '4.4'
|
||||||
|
|
||||||
doLast() {
|
doLast() {
|
||||||
def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"
|
def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"
|
||||||
|
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-bin.zip
|
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStorePath=wrapper/dists
|
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
|
||||||
|
|
|
@ -43,7 +43,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
optional("io.undertow:undertow-core:${undertowVersion}")
|
optional("io.undertow:undertow-core:${undertowVersion}")
|
||||||
optional("com.squareup.okhttp3:okhttp:3.9.1")
|
optional("com.squareup.okhttp3:okhttp:3.9.1")
|
||||||
optional("org.apache.httpcomponents:httpclient:4.5.3") {
|
optional("org.apache.httpcomponents:httpclient:4.5.4") {
|
||||||
exclude group: "commons-logging", module: "commons-logging"
|
exclude group: "commons-logging", module: "commons-logging"
|
||||||
}
|
}
|
||||||
optional("org.apache.httpcomponents:httpasyncclient:4.1.3") {
|
optional("org.apache.httpcomponents:httpasyncclient:4.1.3") {
|
||||||
|
|
Loading…
Reference in New Issue