-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
37 lines (30 loc) · 864 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.9.0'
id "org.kordamp.gradle.errorprone" version "0.47.0"
}
group 'com.ldts.frogger'
version '1.0'
repositories {
mavenCentral()
}
pitest {
junit5PluginVersion = '1.0.0'
excludedClasses = ['com.ldts.frogger.Game', 'com.ldts.frogger.model.game.arena.RandomArenaBuilder']
}
application {
mainClass.set('com.ldts.frogger.Game')
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.mockito:mockito-inline: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')
}
}