Skip to content

Commit 83e2977

Browse files
committed
workaround for running tests with java10
1 parent 5241241 commit 83e2977

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@ workflows:
1111
version: "9"
1212
requires:
1313
- java8
14+
- unit-tests:
15+
name: java10
16+
version: "10"
17+
requires:
18+
- java9
1419
- unit-tests:
1520
name: java11
1621
version: "11"
1722
requires:
18-
- java9
23+
- java10
1924
- unit-tests:
2025
name: java-latest
2126
version: "latest"

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@
171171
<groupId>org.apache.maven.plugins</groupId>
172172
<artifactId>maven-surefire-plugin</artifactId>
173173
<version>2.19.1</version>
174+
<configuration>
175+
<useSystemClassLoader>false</useSystemClassLoader>
176+
</configuration>
174177
<dependencies>
175178
<dependency>
176179
<groupId>org.junit.platform</groupId>

0 commit comments

Comments
 (0)