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
28 lines (25 loc) · 754 Bytes
/
build.gradle
File metadata and controls
28 lines (25 loc) · 754 Bytes
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
ext {
limits = [
'instruction': 96.5,
'branch' : 91,
'line' : 96.5,
'complexity' : 92,
'method' : 96,
'class' : 100
]
}
dependencies {
compile "io.github.classgraph:classgraph:$classGraph"
compile libs.core
compile libs.spring
compile project(':springfox-spi')
compile project(':springfox-schema').sourceSets.main.output
provided libs.springProvided
provided libs.clientProvided
testCompile "javax.validation:validation-api:$validationApiVersion"
testCompile project(':springfox-core')
testCompile libs.test
testCompile libs.swagger2Core
testCompile project(':springfox-core').sourceSets.test.output
testCompile project(':springfox-schema').sourceSets.test.output
}