We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b368002 commit 6a60e50Copy full SHA for 6a60e50
1 file changed
build.gradle
@@ -24,7 +24,7 @@ allprojects {
24
sourceCompatibility = JavaVersion.VERSION_1_8
25
targetCompatibility = JavaVersion.VERSION_1_8
26
27
- tasks.withType(JavaCompile) {
+ tasks.withType(JavaCompile).configureEach {
28
options.encoding = 'UTF-8'
29
}
30
@@ -120,7 +120,7 @@ subprojects {
120
121
122
123
- tasks.withType(Test) {
+ tasks.withType(Test).configureEach {
124
// Enable JUnit 5 (Gradle 4.6+).
125
useJUnitPlatform()
126
@@ -138,5 +138,8 @@ subprojects {
138
// prevent circular dependency
139
implementation project(':core')
140
141
+
142
+ testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
143
+ testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0'
144
145
0 commit comments