-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (31 loc) · 866 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
plugins {
id 'java'
id 'application'
id 'info.solidsoft.pitest' version '1.6.0'
}
group 'com.lpoo.g34'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testImplementation 'net.jqwik:jqwik:1.5.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation group: 'com.googlecode.lanterna', name: 'lanterna', version: '3.1.1'
testImplementation 'org.mockito:mockito-core:3.7.7'
testImplementation 'org.mockito:mockito-inline:2.13.0'
testImplementation 'net.jqwik:jqwik:1.5.1'
}
test {
useJUnitPlatform() {
includeEngines ('junit-jupiter', 'jqwik')
}
}
pitest {
junit5PluginVersion = '0.12'
targetClasses = ['com.lpoo.terrarius.*']
}
application {
mainClass.set("com.lpoo.terrarius.Terrarius")
}