Skip to content

Commit

Permalink
upgrade swagger to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Roudet committed Mar 2, 2020
1 parent b49dd11 commit 9fe7612
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion docs-examples/example-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ plugins {

dependencyManagement {
imports {
mavenBom "io.micronaut:micronaut-bom:$micronautVersion"
mavenBom("io.micronaut:micronaut-bom:$micronautVersion") {
bomProperty 'swagger.version', '2.1.1'
}
}
}

Expand Down
4 changes: 3 additions & 1 deletion docs-examples/example-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ plugins {

dependencyManagement {
imports {
mavenBom "io.micronaut:micronaut-bom:$micronautVersion"
mavenBom("io.micronaut:micronaut-bom:$micronautVersion") {
bomProperty 'swagger.version', swaggerVersion
}
}
}

Expand Down
4 changes: 3 additions & 1 deletion docs-examples/example-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ plugins {

dependencyManagement {
imports {
mavenBom "io.micronaut:micronaut-bom:$micronautVersion"
mavenBom("io.micronaut:micronaut-bom:$micronautVersion") {
bomProperty 'swagger.version', swaggerVersion
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ grailsVersion=3.3.8
spockVersion=1.2-groovy-2.5
micronautTestVersion=1.1.0
rxJava2Version=2.2.6
swaggerVersion=2.0.10
swaggerVersion=2.1.1
title=OpenAPI/Swagger Support
projectDesc=Configuration to integrate Micronaut and OpenAPI/Swagger
projectUrl=http://micronaut.io
Expand Down

0 comments on commit 9fe7612

Please sign in to comment.