-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
49 lines (41 loc) · 1 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
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/6.7/samples
*/
plugins {
id 'java'
id 'application'
id 'jacoco'
id "com.github.johnrengelman.shadow" version "6.1.0"
}
application {
mainClassName = 'SeaTurtle.Main'
}
run {
standardInput = System.in
}
jar {
manifest {
attributes 'Main-Class': 'SeaTurtle.Main'
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
testImplementation 'org.mockito:mockito-core:3.1.0'
testImplementation 'io.cucumber:cucumber-java:6.8.1'
testImplementation 'io.cucumber:cucumber-junit:6.8.1'
testImplementation 'junit:junit:4.13'
compile group: 'commons-validator', name: 'commons-validator', version: '1.7'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.32.3.2'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
}