-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (32 loc) · 902 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
41
42
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' }
}
ext.junitPlatformVersion = '1.9.0'
ext.junitJupiterVersion = '5.9.0'
ext.approvaltestsVersion = '18.0.0'
ext.jqwikVersion = '1.7.0-SNAPSHOT'
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileTestJava {
options.compilerArgs += '-parameters'
options.encoding = 'UTF-8'
}
test {
useJUnitPlatform()
include '**/*Properties.class'
include '**/*Test.class'
include '**/*Tests.class'
}
dependencies {
testImplementation('org.assertj:assertj-core:3.21.0')
testImplementation "net.jqwik:jqwik:${jqwikVersion}"
testImplementation("org.junit.jupiter:junit-jupiter:${junitJupiterVersion}")
testImplementation("com.approvaltests:approvaltests:${approvaltestsVersion}")
}
wrapper {
gradleVersion = '7.5'
}