-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (45 loc) · 1.12 KB
/
build.gradle
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
46
47
48
49
50
51
52
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.2.51'
}
group 'com.kotlin.restassured.basics'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'io.rest-assured:json-path:3.1.1'
compile 'io.rest-assured:xml-path:3.1.1'
testCompile 'io.rest-assured:rest-assured:3.1.1'
testCompile 'io.rest-assured:json-schema-validator:3.1.1'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile('junit:junit:4.12'){
exclude group: 'org.hamcrest'
}
testCompile 'com.github.tomakehurst:wiremock:2.19.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
task startMockServer() {
doFirst {
exec {
workingDir '.'
commandLine 'java', '-jar', 'wiremock-standalone-2.19.0.jar', '--port', '8888', '--root-dir', 'src/test/resources'
}
}
}
task stopMockServer {
doLast {
startMockServer.processHandle.abort()
}
}
test {
reports {
junitXml.enabled = false
html.enabled = true
}
}