Skip to content

Commit 287d5c3

Browse files
committed
Add missing starters
See gh-46245
1 parent 4ca7854 commit 287d5c3

File tree

10 files changed

+118
-4
lines changed

10 files changed

+118
-4
lines changed

platform/spring-boot-dependencies/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2081,6 +2081,7 @@ bom {
20812081
"spring-boot-starter-batch",
20822082
"spring-boot-starter-cassandra",
20832083
"spring-boot-starter-cache",
2084+
"spring-boot-starter-cloudfoundry",
20842085
"spring-boot-starter-couchbase",
20852086
"spring-boot-starter-data-cassandra",
20862087
"spring-boot-starter-data-cassandra-reactive",
@@ -2113,6 +2114,7 @@ bom {
21132114
"spring-boot-starter-jms",
21142115
"spring-boot-starter-jooq",
21152116
"spring-boot-starter-json",
2117+
"spring-boot-starter-jsonb",
21162118
"spring-boot-starter-kafka",
21172119
"spring-boot-starter-ldap",
21182120
"spring-boot-starter-liquibase",
@@ -2131,6 +2133,7 @@ bom {
21312133
"spring-boot-starter-pulsar-reactive",
21322134
"spring-boot-starter-quartz",
21332135
"spring-boot-starter-r2dbc",
2136+
"spring-boot-starter-reactor",
21342137
"spring-boot-starter-reactor-netty",
21352138
"spring-boot-starter-restclient",
21362139
"spring-boot-starter-rsocket",
@@ -2144,6 +2147,7 @@ bom {
21442147
"spring-boot-starter-session-data-redis",
21452148
"spring-boot-starter-session-hazelcast",
21462149
"spring-boot-starter-session-jdbc",
2150+
"spring-boot-starter-sql",
21472151
"spring-boot-starter-test",
21482152
"spring-boot-starter-thymeleaf",
21492153
"spring-boot-starter-tomcat",

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ include "starter:spring-boot-starter-artemis"
178178
include "starter:spring-boot-starter-batch"
179179
include "starter:spring-boot-starter-cache"
180180
include "starter:spring-boot-starter-cassandra"
181+
include "starter:spring-boot-starter-cloudfoundry"
181182
include "starter:spring-boot-starter-couchbase"
182183
include "starter:spring-boot-starter-data-cassandra"
183184
include "starter:spring-boot-starter-data-cassandra-reactive"
@@ -210,6 +211,7 @@ include "starter:spring-boot-starter-jetty"
210211
include "starter:spring-boot-starter-jms"
211212
include "starter:spring-boot-starter-jooq"
212213
include "starter:spring-boot-starter-json"
214+
include "starter:spring-boot-starter-jsonb"
213215
include "starter:spring-boot-starter-kafka"
214216
include "starter:spring-boot-starter-ldap"
215217
include "starter:spring-boot-starter-liquibase"
@@ -229,6 +231,7 @@ include "starter:spring-boot-starter-pulsar"
229231
include "starter:spring-boot-starter-pulsar-reactive"
230232
include "starter:spring-boot-starter-quartz"
231233
include "starter:spring-boot-starter-r2dbc"
234+
include "starter:spring-boot-starter-reactor"
232235
include "starter:spring-boot-starter-reactor-netty"
233236
include "starter:spring-boot-starter-restclient"
234237
include "starter:spring-boot-starter-rsocket"
@@ -242,6 +245,7 @@ include "starter:spring-boot-starter-session-data-mongodb"
242245
include "starter:spring-boot-starter-session-data-redis"
243246
include "starter:spring-boot-starter-session-hazelcast"
244247
include "starter:spring-boot-starter-session-jdbc"
248+
include "starter:spring-boot-starter-sql"
245249
include "starter:spring-boot-starter-test"
246250
include "starter:spring-boot-starter-thymeleaf"
247251
include "starter:spring-boot-starter-tomcat"
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright 2012-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the License);
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
plugins {
18+
id "org.springframework.boot.starter"
19+
}
20+
21+
description = "Starter for using Cloud Foundry"
22+
23+
dependencies {
24+
api(project(":starter:spring-boot-starter"))
25+
26+
api(project(":module:spring-boot-cloudfoundry"))
27+
}

starter/spring-boot-starter-data-cassandra-reactive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description = "Starter for using Cassandra distributed database and Spring Data
2222

2323
dependencies {
2424
api(project(":starter:spring-boot-starter-cassandra"))
25+
api(project(":starter:spring-boot-starter-reactor"))
2526

2627
api(project(":module:spring-boot-data-cassandra"))
27-
api(project(":module:spring-boot-reactor"))
2828
}

starter/spring-boot-starter-data-couchbase-reactive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
2222

2323
dependencies {
2424
api(project(":starter:spring-boot-starter-couchbase"))
25+
api(project(":starter:spring-boot-starter-reactor"))
2526

2627
api(project(":module:spring-boot-data-couchbase"))
27-
api(project(":module:spring-boot-reactor"))
2828
}

starter/spring-boot-starter-data-mongodb-reactive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ description = "Starter for using MongoDB document-oriented database and Spring D
2222

2323
dependencies {
2424
api(project(":starter:spring-boot-starter-mongodb"))
25+
api(project(":starter:spring-boot-starter-reactor"))
2526

2627
api(project(":module:spring-boot-data-mongodb"))
27-
api(project(":module:spring-boot-reactor"))
2828

2929
api("org.mongodb:mongodb-driver-reactivestreams")
3030
}

starter/spring-boot-starter-data-redis-reactive/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description = "Starter for using Redis key-value data store with Spring Data Red
2222

2323
dependencies {
2424
api(project(":starter:spring-boot-starter"))
25+
api(project(":starter:spring-boot-starter-reactor"))
2526

2627
api(project(":module:spring-boot-data-redis"))
27-
api(project(":module:spring-boot-reactor"))
2828
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* Copyright 2012-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the License);
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
plugins {
18+
id "org.springframework.boot.starter"
19+
}
20+
21+
description = "Starter for JSON-B"
22+
23+
dependencies {
24+
api(project(":module:spring-boot-jsonb"))
25+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright 2012-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the License);
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
plugins {
18+
id "org.springframework.boot.starter"
19+
}
20+
21+
description = "Starter for using Reactor"
22+
23+
dependencies {
24+
api(project(":starter:spring-boot-starter"))
25+
26+
api(project(":module:spring-boot-reactor"))
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright 2012-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the License);
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
plugins {
18+
id "org.springframework.boot.starter"
19+
}
20+
21+
description = "Starter for SQL support"
22+
23+
dependencies {
24+
api(project(":starter:spring-boot-starter"))
25+
26+
api(project(":module:spring-boot-sql"))
27+
}

0 commit comments

Comments
 (0)