forked from springfox/springfox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (29 loc) · 1.01 KB
/
build.gradle
File metadata and controls
33 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ext {
limits = [
'instruction': 96.5,
'branch' : 91,
'line' : 96.5,
'complexity' : 92,
'method' : 96,
'class' : 100
]
}
dependencies {
api libs.core
api libs.spring
api project(':springfox-spi')
api project(':springfox-core')
api project(':springfox-spring-web')
api project(':springfox-schema')
implementation "com.athaydes.rawhttp:rawhttp-core:2.4.0"
compileOnly libs.springProvidedWithSpringIntegration
compileOnly "org.springframework.restdocs:spring-restdocs-mockmvc:2.0.4.RELEASE"
compileOnly libs.clientProvided
testImplementation libs.test
testImplementation libs.swagger2Core
testImplementation libs.springProvidedWithSpringIntegration
testImplementation project(':springfox-spring-web').sourceSets.test.output
testImplementation project(':springfox-core').sourceSets.test.output
testImplementation project(':springfox-schema').sourceSets.test.output
testImplementation "javax.validation:validation-api:$validationApiVersion"
}