-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 967 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
plugins {
id 'java'
id 'application'
id 'info.solidsoft.pitest' version '1.15.0'
//id "org.kordamp.gradle.errorprone" version "0.53.0"
}
group = 'com.CrossingGuardJoe'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains:annotations:24.0.0'
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.mockito:mockito-core:3.7.7'
implementation 'com.groupcdg:pitest-annotations:1.1.2'
}
test {
useJUnitPlatform()
}
application {
mainClassName = 'com.CrossingGuardJoe.Game'
}
pitest {
junit5PluginVersion = '1.2.0'
excludedClasses = ['com.CrossingGuardJoe.Game', 'com.CrossingGuardJoe.controller.Sounds', 'com.CrossingGuardJoe.controller.SoundsController']
}