Skip to content

Commit a477b7c

Browse files
committed
doc update
1 parent b4e1ed2 commit a477b7c

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ Desktop.ini
130130
*.*~
131131
*~
132132
.merge_file*
133+
.java-version
133134

134135
######################
135136
# Gradle Wrapper

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ Gradle Groovy DSL
2626

2727
```groovy
2828
plugins {
29-
id "org.springframework.boot" version "2.3.0.RELEASE"
30-
id "org.springdoc.openapi-gradle-plugin" version "1.3.4"
29+
id "org.springframework.boot" version "2.7.0"
30+
id "org.springdoc.openapi-gradle-plugin" version "1.4.0"
3131
}
3232
```
3333

3434
Gradle Kotlin DSL
3535
```groovy
3636
plugins {
37-
id("org.springframework.boot") version "2.3.0.RELEASE"
38-
id("org.springdoc.openapi-gradle-plugin") version "1.3.4"
37+
id("org.springframework.boot") version "2.7.0"
38+
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
3939
}
4040
```
4141

@@ -133,7 +133,7 @@ The `groupedApiMappings` customization allows you to specify multiple URLs/file
133133
2. Update the version for the plugin to match the current version found in `build.gradle.kts`
134134

135135
```
136-
id("org.springdoc.openapi-gradle-plugin") version "1.3.4"
136+
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
137137
```
138138
139139
3. Add the following to the spring boot apps `settings.gradle`

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "org.springdoc"
12-
version = "1.3.4"
12+
version = "1.4.0"
1313

1414
sonarqube {
1515
properties {

0 commit comments

Comments
 (0)