Skip to content

Commit ac5066e

Browse files
committed
deps upgrade
1 parent e7ba9a8 commit ac5066e

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@ version=4.1.0-SNAPSHOT
55
springBootVersion=4.1.0
66
# https://docs.spring.io/spring-cloud-release/reference/index.html
77
# https://central.sonatype.com/artifact/org.springframework.cloud/spring-cloud-dependencies
8-
#springCloudVersion=2025.1.0
9-
springCloudCommonsVersion=5.0.0
8+
#springCloudVersion=2025.1.2
9+
springCloudCommonsVersion=5.0.2
1010
# https://central.sonatype.com/artifact/org.springframework.cloud/spring-cloud-dependencies
11-
springCloudOpenFeignVersion=5.0.0
11+
springCloudOpenFeignVersion=5.0.2
1212
# https://github.com/spring-gradle-plugins/dependency-management-plugin
1313
springDependencyManagementPluginVersion=1.1.7
1414
# https://github.com/spring-gradle-plugins/nullability-plugin
1515
springNullabilityPluginVersion=0.0.8
1616
# https://github.com/rodnansol/spring-configuration-property-documenter
1717
springConfigurationPropertyDocumenterVersion=0.7.2
1818
# https://github.com/graalvm/native-build-tools
19-
graalVmNativePluginVersion=0.11.4
19+
graalVmNativePluginVersion=1.1.2
2020

2121
# Code quality
2222
# https://plugins.gradle.org/plugin/com.diffplug.gradle.spotless
23-
spotlessVersion=8.2.1
23+
spotlessVersion=8.7.0
2424
# https://plugins.gradle.org/plugin/com.github.spotbugs
25-
spotbugsVersion=6.4.8
25+
spotbugsVersion=6.5.8
2626
# https://github.com/spotbugs/spotbugs-gradle-plugin/blob/master/build.gradle.kts
27-
spotbugsAnnotationsVersion=4.9.8
27+
spotbugsAnnotationsVersion=4.10.2
2828

2929
# Publishing
3030
# https://github.com/DanielLiu1123/maven-deployer

httpexchange-spring-boot-autoconfigure/src/main/java/io/github/danielliu1123/httpexchange/ExchangeClientCreator.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,11 @@ private HttpClientSettings buildHttpClientSettings(HttpExchangeProperties.Channe
330330
.map(bundle -> beanFactory.getBean(SslBundles.class).getBundle(bundle))
331331
.orElseGet(globalConfig::sslBundle);
332332

333-
return new HttpClientSettings(redirects, connectTimeout, readTimeout, sslBundle);
333+
return HttpClientSettings.defaults()
334+
.withRedirects(redirects)
335+
.withConnectTimeout(connectTimeout)
336+
.withReadTimeout(readTimeout)
337+
.withSslBundle(sslBundle);
334338
}
335339

336340
private boolean isLoadBalancerEnabled(HttpExchangeProperties.Channel channelConfig) {

0 commit comments

Comments
 (0)