Upgrading to spring boot 3.2
This commit is contained in:
17
README.adoc
17
README.adoc
@@ -19,13 +19,22 @@ Join us in our gitter channel: https://gitter.im/spring-cloud-app-broker/communi
|
||||
|
||||
=== Compatibility
|
||||
|
||||
==== 2.3.x
|
||||
|
||||
* https://projects.spring.io/spring-framework/[Spring Framework] 6.2.x
|
||||
* https://projects.spring.io/spring-boot/[Spring Boot] 3.3.x
|
||||
* https://github.com/cloudfoundry/cf-java-client/[Cloud Foundry Java Client] 5.x
|
||||
* https://github.com/reactor/[Reactor] 2023.0.0
|
||||
* https://spring.io/projects/spring-cloud-open-service-broker/[Spring Cloud Open Service Broker] 4.3.x
|
||||
* https://github.com/openservicebrokerapi/servicebroker/tree/v2.16/[Open Service Broker API] 2.16
|
||||
|
||||
==== 2.2.x
|
||||
|
||||
* https://projects.spring.io/spring-framework/[Spring Framework] 6.0.x
|
||||
* https://projects.spring.io/spring-boot/[Spring Boot] 3.1.x
|
||||
* https://projects.spring.io/spring-framework/[Spring Framework] 6.1.x
|
||||
* https://projects.spring.io/spring-boot/[Spring Boot] 3.2.x
|
||||
* https://github.com/cloudfoundry/cf-java-client/[Cloud Foundry Java Client] 5.x
|
||||
* https://github.com/reactor/[Reactor] 2022.0.0
|
||||
* https://spring.io/projects/spring-cloud-open-service-broker/[Spring Cloud Open Service Broker] 4.1.x
|
||||
* https://github.com/reactor/[Reactor] 2023.0.0
|
||||
* https://spring.io/projects/spring-cloud-open-service-broker/[Spring Cloud Open Service Broker] 4.2.x
|
||||
* https://github.com/openservicebrokerapi/servicebroker/tree/v2.16/[Open Service Broker API] 2.16
|
||||
|
||||
==== 2.1.x
|
||||
|
||||
13
build.gradle
13
build.gradle
@@ -22,8 +22,7 @@ buildscript {
|
||||
cfJavaClientVersion = "5.10.0.RELEASE"
|
||||
commonsTextVersion = "1.11.0"
|
||||
immutablesVersion = "2.10.1"
|
||||
openServiceBrokerVersion = "4.1.0"
|
||||
springFrameworkVersion = "6.0.0"
|
||||
openServiceBrokerVersion = "4.2.0-SNAPSHOT"
|
||||
wiremockVersion = "3.4.2"
|
||||
}
|
||||
}
|
||||
@@ -34,14 +33,6 @@ plugins {
|
||||
id 'jacoco'
|
||||
}
|
||||
|
||||
ext {
|
||||
javaApi = "https://docs.oracle.com/en/java/javase/17/docs/api/"
|
||||
javadocLinks = [
|
||||
javaApi,
|
||||
"https://docs.spring.io/spring-framework/docs/${springFrameworkVersion}/javadoc-api/"
|
||||
] as String[]
|
||||
}
|
||||
|
||||
description = "Spring Cloud App Broker"
|
||||
|
||||
allprojects {
|
||||
@@ -184,7 +175,6 @@ configure(libraryProjects) {
|
||||
options.memberLevel = JavadocMemberLevel.PROTECTED
|
||||
options.author = true
|
||||
options.header = project.name
|
||||
options.links(javadocLinks)
|
||||
options.addStringOption('Xdoclint:none', '-quiet')
|
||||
}
|
||||
|
||||
@@ -312,7 +302,6 @@ task api(type: Javadoc) {
|
||||
options.memberLevel = JavadocMemberLevel.PROTECTED
|
||||
options.author = true
|
||||
options.header = rootProject.description
|
||||
options.links(javadocLinks)
|
||||
options.addStringOption('Xdoclint:none', '-quiet')
|
||||
|
||||
source libraryProjects.collect { project ->
|
||||
|
||||
@@ -8,7 +8,7 @@ pluginManagement {
|
||||
}
|
||||
plugins {
|
||||
id "io.spring.nohttp" version "0.0.11"
|
||||
id 'org.springframework.boot' version "3.1.9"
|
||||
id 'org.springframework.boot' version "3.2.3"
|
||||
id 'org.asciidoctor.jvm.pdf'
|
||||
id 'org.asciidoctor.jvm.convert'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user