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
34 lines (29 loc) · 716 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 716 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
29
30
31
32
33
34
dependencies {
compile (libs.swaggerCore) {
exclude group: 'org.scala-lang', module: 'scala-compiler'
exclude group: 'org.scala-lang', module: 'scalap'
exclude group: 'org.scala-lang', module: 'scala-library'
exclude group: 'org.scala-lang', module: 'scala-reflect'
}
compile libs.core
compile libs.spring
provided libs.clientProvided
testCompile libs.test
}
publishing {
repositories {
configure(releaseRepos)
}
publications {
models(MavenPublication) {
from components.java
artifact packageSources {
classifier "sources"
}
artifact (javadocJar) {
classifier = 'javadoc'
}
pom.withXml swaggerMvcPomConfig
}
}
}