File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
main/kotlin/org/springdoc/openapi/gradle/plugin
test/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ Gradle Groovy DSL
2727``` groovy
2828plugins {
2929 id "org.springframework.boot" version "2.7.0"
30- id "org.springdoc.openapi-gradle-plugin" version "1.4 .0"
30+ id "org.springdoc.openapi-gradle-plugin" version "1.5 .0"
3131}
3232```
3333
3434Gradle Kotlin DSL
3535``` groovy
3636plugins {
3737 id("org.springframework.boot") version "2.7.0"
38- id("org.springdoc.openapi-gradle-plugin") version "1.4 .0"
38+ id("org.springdoc.openapi-gradle-plugin") version "1.5 .0"
3939}
4040```
4141
@@ -133,7 +133,7 @@ The `groupedApiMappings` customization allows you to specify multiple URLs/file
1331332 . 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.4 .0"
136+ id("org.springdoc.openapi-gradle-plugin") version "1.5 .0"
137137 ```
138138
1391393. Add the following to the spring boot apps `settings.gradle`
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99}
1010
1111group = " org.springdoc"
12- version = " 1.4 .0"
12+ version = " 1.5 .0"
1313
1414sonarqube {
1515 properties {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ open class OpenApiGeneratorTask : DefaultTask() {
8181 connection.requestMethod = " GET"
8282 connection.connect()
8383
84- val response = String (connection.inputStream.readAllBytes (), Charsets .UTF_8 )
84+ val response = String (connection.inputStream.readBytes (), Charsets .UTF_8 )
8585
8686 val apiDocs = if (isYaml) response else prettifyJson(response)
8787
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class OpenApiGradlePluginTest {
4343
4444 dependencies {
4545 implementation 'org.springframework.boot:spring-boot-starter-web'
46- implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.4.0 '
46+ implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.6.12 '
4747 }
4848 """ .trimIndent()
4949
You can’t perform that action at this time.
0 commit comments