-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (36 loc) · 737 Bytes
/
build.gradle
File metadata and controls
45 lines (36 loc) · 737 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
35
36
37
38
39
40
41
42
43
44
45
plugins {
id 'org.hidetake.swagger.generator' version '2.10.0'
id 'com.williamhill.wiremock' version '0.4.1'
id "com.github.johnrengelman.shadow" version "2.0.2"
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
swaggerUI 'org.webjars:swagger-ui:3.10.0'
}
swaggerSources {
api {
inputFile = file('doc/swagger/swagger.yml')
}
}
wiremock {
dir file('wiremock/')
params "--port=8082"
}
apply plugin: 'application'
apply plugin: 'idea'
apply from: "gradle/dependencies.gradle"
subprojects {
group 'com.dev0xff'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
}
}