-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (32 loc) · 932 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
plugins {
id 'java'
id 'application'
id 'info.solidsoft.pitest' version '1.15.0'
//id 'net.ltgt.errorprone' version '2.0.2'
}
group = 'com.l13gr03'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation group: 'com.googlecode.lanterna', name: 'lanterna', version: '3.1.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testImplementation 'net.jqwik:jqwik:1.5.1'
testImplementation 'org.mockito:mockito-core:4.0.0'
//errorprone("com.google.errorprone:error_prone_core:2.0.2")
}
test {
useJUnitPlatform {
includeEngines ('junit-jupiter', 'jqwik')
}
}
pitest {
targetClasses = ['com.l13gr03.pets.*']
targetTests = ['com.l13gr03.pets.*']
}
application {
mainClass.set('com.l13gr03.pets.Game')
}