@@ -98,6 +98,7 @@ This is a community-based project, not maintained by the Spring Framework Contri
98
98
* Add the ` springdoc-openapi-ui ` library to the list of your project dependencies (No
99
99
additional configuration is needed):
100
100
101
+ Maven
101
102
``` xml
102
103
<dependency >
103
104
<groupId >org.springdoc</groupId >
@@ -106,6 +107,11 @@ This is a community-based project, not maintained by the Spring Framework Contri
106
107
</dependency >
107
108
```
108
109
110
+ Gradle
111
+ ``` groovy
112
+ implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:latest'
113
+ ```
114
+
109
115
* This step is optional: For custom path of the swagger documentation in HTML format, add
110
116
a custom springdoc property, in your spring-boot configuration file:
111
117
@@ -144,6 +150,7 @@ springdoc.swagger-ui.path=/swagger-ui.html
144
150
* Add the library to the list of your project dependencies. (No additional configuration
145
151
is needed)
146
152
153
+ Maven
147
154
``` xml
148
155
<dependency >
149
156
<groupId >org.springdoc</groupId >
@@ -152,6 +159,11 @@ springdoc.swagger-ui.path=/swagger-ui.html
152
159
</dependency >
153
160
```
154
161
162
+ Gradle
163
+ ``` groovy
164
+ implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:latest'
165
+ ```
166
+
155
167
* This step is optional: For custom path of the OpenAPI documentation in Json format, add
156
168
a custom springdoc property, in your spring-boot configuration file:
157
169
@@ -189,6 +201,7 @@ and `@SecurityScheme` annotations within a Spring managed bean.
189
201
* Add the library to the list of your project dependencies (No additional configuration
190
202
is needed)
191
203
204
+ Maven
192
205
``` xml
193
206
<dependency >
194
207
<groupId >org.springdoc</groupId >
@@ -197,6 +210,11 @@ and `@SecurityScheme` annotations within a Spring managed bean.
197
210
</dependency >
198
211
```
199
212
213
+ Gradle
214
+ ``` groovy
215
+ implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:latest'
216
+ ```
217
+
200
218
* This step is optional: For custom path of the swagger documentation in HTML format, add
201
219
a custom springdoc property, in your spring-boot configuration file:
202
220
0 commit comments