-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (33 loc) · 845 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
plugins {
id 'java'
id 'application'
id 'info.solidsoft.pitest' version '1.15.0'
id 'org.kordamp.gradle.errorprone' version '0.53.0'
}
group 'badIceCream.*'
version '1.0'
repositories {
mavenCentral()
}
pitest {
junit5PluginVersion = '1.2.0'
excludedTestClasses = ['badIceCream.utils.Audio']
}
test {
jvmArgs = ['-Xmx1g']
}
application {
mainClass.set('badIceCream.Game')
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.mockito:mockito-core:3.7.7'
testImplementation 'net.jqwik:jqwik:1.5.1'
implementation group: 'com.googlecode.lanterna', name: 'lanterna', version: '3.1.1'
}
test {
useJUnitPlatform {
includeEngines('junit-jupiter', 'jqwik')
}
}