Skip to content

Commit

Permalink
Added new module to support oas 3.0
Browse files Browse the repository at this point in the history
(2022)
  • Loading branch information
dilipkrish committed Sep 14, 2017
1 parent 63f4586 commit c1dae73
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ include 'springfox-spring-web'
include 'springfox-swagger-common'
include 'springfox-swagger1'
include 'springfox-swagger2'
include 'springfox-oas'
include 'springfox-bean-validators'
include 'springfox-data-rest'
include 'springfox-swagger-ui'
Expand Down
37 changes: 37 additions & 0 deletions springfox-oas/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
plugins {
id "net.ltgt.apt" version "0.9"
}

ext {
limits = [
'instruction': 96,
'branch' : 84,
'line' : 96.5,
'complexity' : 87,
'method' : 95,
'class' : 100
]
}

dependencies {
compile libs.oasCore
compile project(':springfox-spi')
compile project(':springfox-schema')
compile project(':springfox-spring-web')
compile libs.core
compile libs.spring

compile "org.mapstruct:mapstruct:$mapstruct"
apt "org.mapstruct:mapstruct-processor:$mapstruct"

provided libs.springProvided
provided libs.clientProvided

testCompile project(':springfox-core')
testCompile project(':springfox-core').sourceSets.test.output
testCompile project(':springfox-schema').sourceSets.test.output
testCompile project(':springfox-spring-web').sourceSets.test.output

testCompile libs.test
testCompile "org.skyscreamer:jsonassert:${jsonAssert}"
}

0 comments on commit c1dae73

Please sign in to comment.