We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5241241 commit 83e2977Copy full SHA for 83e2977
2 files changed
.circleci/config.yml
@@ -11,11 +11,16 @@ workflows:
11
version: "9"
12
requires:
13
- java8
14
+ - unit-tests:
15
+ name: java10
16
+ version: "10"
17
+ requires:
18
+ - java9
19
- unit-tests:
20
name: java11
21
version: "11"
22
- - java9
23
+ - java10
24
25
name: java-latest
26
version: "latest"
pom.xml
@@ -171,6 +171,9 @@
171
<groupId>org.apache.maven.plugins</groupId>
172
<artifactId>maven-surefire-plugin</artifactId>
173
<version>2.19.1</version>
174
+ <configuration>
175
+ <useSystemClassLoader>false</useSystemClassLoader>
176
+ </configuration>
177
<dependencies>
178
<dependency>
179
<groupId>org.junit.platform</groupId>
0 commit comments