Skip to content

Commit

Permalink
Upgrading to spring boot 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Albertoimpl committed Mar 8, 2024
1 parent 1f8a654 commit fb96a34
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
17 changes: 13 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 1 addition & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand All @@ -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 {
Expand Down Expand Up @@ -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')
}

Expand Down Expand Up @@ -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 ->
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down

0 comments on commit fb96a34

Please sign in to comment.