Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Aug 6, 2022
1 parent b4e1ed2 commit a477b7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Desktop.ini
*.*~
*~
.merge_file*
.java-version

######################
# Gradle Wrapper
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ Gradle Groovy DSL

```groovy
plugins {
id "org.springframework.boot" version "2.3.0.RELEASE"
id "org.springdoc.openapi-gradle-plugin" version "1.3.4"
id "org.springframework.boot" version "2.7.0"
id "org.springdoc.openapi-gradle-plugin" version "1.4.0"
}
```

Gradle Kotlin DSL
```groovy
plugins {
id("org.springframework.boot") version "2.3.0.RELEASE"
id("org.springdoc.openapi-gradle-plugin") version "1.3.4"
id("org.springframework.boot") version "2.7.0"
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
}
```

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

```
id("org.springdoc.openapi-gradle-plugin") version "1.3.4"
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
```
3. Add the following to the spring boot apps `settings.gradle`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "org.springdoc"
version = "1.3.4"
version = "1.4.0"

sonarqube {
properties {
Expand Down

0 comments on commit a477b7c

Please sign in to comment.