-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
38 lines (32 loc) · 962 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
plugins {
id 'groovy'
id 'java'
id 'application'
id "org.kordamp.gradle.errorprone" version "0.47.0"
id 'info.solidsoft.pitest' version '1.6.0'
}
group 'game'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
testImplementation 'org.codehaus.groovy:groovy-all:3.0.8'
implementation group: 'com.googlecode.lanterna', name: 'lanterna', version: '3.1.1'
}
test {
useJUnitPlatform()
}
pitest {
junit5PluginVersion = '0.15'
pitestVersion = '1.6.7'
verbose = true
excludedClasses = ['game.Application']
excludedTestClasses = ['game.gui.LanternaGUICreationTest']
}
mainClassName = 'game.Application'