Skip to content

Commit 178b92c

Browse files
committed
Add Spring.boot.web notation
1 parent f9cbad1 commit 178b92c

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

docs/dependencies-notations.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Built-in Dependency Notations
33
---
44
# Built-in Dependency Notations
55

6-
[**refreshVersions**](https://github.com/jmfayard/refreshVersions) provides **1157** Dependency Notations in **25** groups and **242** subgroups
6+
[**refreshVersions**](https://github.com/jmfayard/refreshVersions) provides **1158** Dependency Notations in **25** groups and **242** subgroups
77

88
**Built-in Dependency Notations** are maven coordinates of popular libraries,
99
discoverable as for example `KotlinX.coroutines.core` in IntelliJ IDEA,
@@ -2440,7 +2440,9 @@ version.NO-RULE" style="text-decoration: underline;" >thymeleaf</span>&nbsp; - <
24402440
org.springframework.boot:spring-boot-starter-validation:_
24412441
version.NO-RULE" style="text-decoration: underline;" >validation</span>&nbsp; - <span title="Spring.boot.webServices
24422442
org.springframework.boot:spring-boot-starter-web-services:_
2443-
version.NO-RULE" style="text-decoration: underline;" >webServices</span>&nbsp; - <span title="Spring.boot.webflux
2443+
version.NO-RULE" style="text-decoration: underline;" >webServices</span>&nbsp; - <span title="Spring.boot.web
2444+
org.springframework.boot:spring-boot-starter-web:_
2445+
version.NO-RULE" style="text-decoration: underline;" >web</span>&nbsp; - <span title="Spring.boot.webflux
24442446
org.springframework.boot:spring-boot-starter-webflux:_
24452447
version.NO-RULE" style="text-decoration: underline;" >webflux</span>&nbsp; - <span title="Spring.boot.websocket
24462448
org.springframework.boot:spring-boot-starter-websocket:_

plugins/dependencies/src/main/kotlin/dependencies/Spring.kt

+2
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ object Spring : IsNotADependency {
137137

138138
val validation = module("spring-boot-starter-validation")
139139

140+
val web = module("spring-boot-starter-web")
141+
140142
val webServices = module("spring-boot-starter-web-services")
141143

142144
val webflux = module("spring-boot-starter-webflux")

plugins/dependencies/src/test/resources/bundled-dependencies-validated.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1084,6 +1084,7 @@ org.springframework.boot:spring-boot-starter-security
10841084
org.springframework.boot:spring-boot-starter-test
10851085
org.springframework.boot:spring-boot-starter-thymeleaf
10861086
org.springframework.boot:spring-boot-starter-validation
1087+
org.springframework.boot:spring-boot-starter-web
10871088
org.springframework.boot:spring-boot-starter-web-services
10881089
org.springframework.boot:spring-boot-starter-webflux
10891090
org.springframework.boot:spring-boot-starter-websocket

plugins/dependencies/src/test/resources/dependencies-mapping-validated.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1225,6 +1225,7 @@ org.springframework.boot..spring-boot-starter-test=Spring.boot.test
12251225
org.springframework.boot..spring-boot-starter-thymeleaf=Spring.boot.thymeleaf
12261226
org.springframework.boot..spring-boot-starter-validation=Spring.boot.validation
12271227
org.springframework.boot..spring-boot-starter-web-services=Spring.boot.webServices
1228+
org.springframework.boot..spring-boot-starter-web=Spring.boot.web
12281229
org.springframework.boot..spring-boot-starter-webflux=Spring.boot.webflux
12291230
org.springframework.boot..spring-boot-starter-websocket=Spring.boot.websocket
12301231
org.springframework.cloud..spring-cloud-bus=Spring.cloud.bus

plugins/dependencies/src/test/resources/dependencies-versions-key-validated.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1085,6 +1085,7 @@ org.springframework.boot..spring-boot-starter-test=version.NO-RULE
10851085
org.springframework.boot..spring-boot-starter-thymeleaf=version.NO-RULE
10861086
org.springframework.boot..spring-boot-starter-validation=version.NO-RULE
10871087
org.springframework.boot..spring-boot-starter-web-services=version.NO-RULE
1088+
org.springframework.boot..spring-boot-starter-web=version.NO-RULE
10881089
org.springframework.boot..spring-boot-starter-webflux=version.NO-RULE
10891090
org.springframework.boot..spring-boot-starter-websocket=version.NO-RULE
10901091
org.springframework.cloud..spring-cloud-bus=version.NO-RULE

0 commit comments

Comments
 (0)