-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 905 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
plugins {
id 'java'
id 'application'
id 'info.solidsoft.pitest' version '1.15.0'
}
group = 'com.ldts.mythsmists'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
pitest {
junit5PluginVersion = '1.2.0'
targetClasses = ['com.ldts.mythsmists.*']
targetTests = ['com.ldts.mythsmists.*']
excludedTestClasses = ['com.ldts.mythsmists.gui.*']
outputFormats = ['XML', 'HTML']
}
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'
}
application {
mainClass.set('com.ldts.mythsmists.Game')
}
test {
useJUnitPlatform {
includeEngines('junit-jupiter', 'jqwik')
}
}