File tree Expand file tree Collapse file tree 8 files changed +35
-11
lines changed
spring-cloud-open-service-broker-acceptance-webflux
spring-cloud-open-service-broker-acceptance-webmvc
spring-cloud-open-service-broker-autoconfigure
spring-cloud-open-service-broker-contract-tests
spring-cloud-open-service-broker-core
spring-cloud-open-service-broker-docs
spring-cloud-starter-open-service-broker Expand file tree Collapse file tree 8 files changed +35
-11
lines changed Original file line number Diff line number Diff line change 16
16
17
17
buildscript {
18
18
ext {
19
- // Spring Dependencies
20
- springBootVersion = " 3.5.0"
21
-
22
19
// External Dependencies
23
20
beanUtilsVersion = " 1.11.0"
24
21
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
17
19
plugins {
18
20
id ' org.springframework.boot'
19
21
}
20
22
21
23
description = " Spring Cloud Open Service Broker Acceptance WebFlux"
22
24
23
25
dependencies {
24
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
26
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
25
27
implementation ' org.springframework.boot:spring-boot-starter'
26
28
implementation ' org.springframework.boot:spring-boot-starter-webflux'
27
29
implementation project(' :spring-cloud-starter-open-service-broker' )
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
17
19
plugins {
18
20
id ' org.springframework.boot'
19
21
}
20
22
21
23
description = " Spring Cloud Open Service Broker Acceptance WebMvc"
22
24
23
25
dependencies {
24
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
26
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
25
27
implementation ' org.springframework.boot:spring-boot-starter'
26
28
implementation ' org.springframework.boot:spring-boot-starter-web'
27
29
implementation project(' :spring-cloud-starter-open-service-broker' )
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
19
+ plugins {
20
+ id ' org.springframework.boot' apply false
21
+ }
22
+
17
23
description = " Spring Cloud Open Service Broker Auto-Configuration"
18
24
19
25
dependencies {
20
26
// BOM imports - The versions used in these files will override any other versions found in the graph
21
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
22
- annotationProcessor platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
27
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
28
+ annotationProcessor platform(SpringBootPlugin . BOM_COORDINATES )
23
29
24
30
api project(' :spring-cloud-open-service-broker-core' )
25
31
optionalApi ' org.springframework.boot:spring-boot-starter-web'
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
17
18
import org.springframework.cloud.contract.verifier.config.TestFramework
18
19
import org.springframework.cloud.contract.verifier.config.TestMode
19
20
20
21
plugins {
22
+ id ' org.springframework.boot' apply false
21
23
id ' groovy'
22
24
id ' org.springframework.cloud.contract' version " ${ springCloudContractVersion} "
23
25
}
@@ -49,7 +51,7 @@ dependencies {
49
51
}
50
52
51
53
implementation platform(" org.springframework.cloud:spring-cloud-contract-dependencies:${ springCloudContractVersion} " )
52
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
54
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
53
55
testImplementation project(' :spring-cloud-starter-open-service-broker' )
54
56
testImplementation ' org.springframework.boot:spring-boot-starter-web'
55
57
testImplementation ' org.springframework.boot:spring-boot-starter-webflux'
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
19
+ plugins {
20
+ id ' org.springframework.boot' apply false
21
+ }
22
+
17
23
description = " Spring Cloud Open Service Broker Core"
18
24
19
25
dependencies {
20
26
// BOM imports - The versions used in these files will override any other versions found in the graph
21
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
27
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
22
28
23
29
compileOnly ' jakarta.servlet:jakarta.servlet-api'
24
30
api ' org.springframework:spring-context'
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
17
19
plugins {
20
+ id ' org.springframework.boot' apply false
18
21
id ' org.asciidoctor.jvm.pdf'
19
22
id ' org.asciidoctor.jvm.convert'
20
23
}
@@ -27,7 +30,7 @@ configurations {
27
30
28
31
dependencies {
29
32
// BOM imports - The versions used in these files will override any other versions found in the graph
30
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
33
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
31
34
32
35
implementation project(' :spring-cloud-open-service-broker-core' )
33
36
implementation ' org.springframework.boot:spring-boot-starter'
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org.springframework.boot.gradle.plugin.SpringBootPlugin
18
+
19
+ plugins {
20
+ id ' org.springframework.boot' apply false
21
+ }
22
+
17
23
description = " Spring Cloud Open Service Broker Starter"
18
24
19
25
dependencies {
20
26
// BOM imports - The versions used in these files will override any other versions found in the graph
21
- implementation platform(" org.springframework.boot:spring-boot-dependencies: ${ springBootVersion } " )
27
+ implementation platform(SpringBootPlugin . BOM_COORDINATES )
22
28
23
29
api ' org.springframework.boot:spring-boot-starter'
24
30
api project(' :spring-cloud-open-service-broker-autoconfigure' )
You can’t perform that action at this time.
0 commit comments