-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
47 lines (39 loc) · 890 Bytes
/
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
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'jacoco'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
mainClassName = 'kapistelykirjasto.Main'
project.ext {
cucumberVersion = '6.8.1'
junitVersion = '4.13.1'
}
repositories {
jcenter()
}
dependencies {
testCompile 'io.cucumber:cucumber-java:' + cucumberVersion
testCompile 'io.cucumber:cucumber-junit:' + cucumberVersion
testCompile group: 'junit', name: 'junit', version: '4.13.1'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.32.3.2'
}
test {
testLogging.showStandardStreams = true
systemProperties System.getProperties()
}
run {
standardInput = System.in
}
jar {
manifest {
attributes 'Main-Class': 'kapistelykirjasto.Main'
}
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}