File tree 3 files changed +5
-8
lines changed
src/test/java/com/tagtraum/perf/gcviewer/imp
3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,10 @@ sudo: false
6
6
7
7
jdk :
8
8
- oraclejdk11
9
- - oraclejdk12
10
- - oraclejdk13
11
- - oraclejdk14
9
+ - oraclejdk15
12
10
- openjdk8
13
11
- openjdk11
14
- - openjdk12
15
- - openjdk13
16
- - openjdk14
12
+ - openjdk15
17
13
18
14
# enable cache to stop downloading all maven plugins every time
19
15
cache :
Original file line number Diff line number Diff line change 196
196
<jdk .source.version>1.8</jdk .source.version>
197
197
<jdk .target.version>1.8</jdk .target.version>
198
198
<tools .maven.plugin.version>1.4</tools .maven.plugin.version>
199
- <jacoco .maven.plugin.version>0.8.5 </jacoco .maven.plugin.version>
199
+ <jacoco .maven.plugin.version>0.8.6 </jacoco .maven.plugin.version>
200
200
<maven .source.plugin.version>3.0.1</maven .source.plugin.version>
201
201
<maven .javadoc.plugin.version>3.0.1</maven .javadoc.plugin.version>
202
202
<maven .gpg.plugin.version>1.6</maven .gpg.plugin.version>
Original file line number Diff line number Diff line change @@ -90,7 +90,8 @@ public void loadModelIllegalArgument() throws Exception {
90
90
catch (DataReaderException e ) {
91
91
assertNotNull ("cause" , e .getCause ());
92
92
Class expectedClass ;
93
- if (System .getProperty ("java.version" ).startsWith ("14" )) {
93
+ String javaVersion = System .getProperty ("java.version" );
94
+ if (javaVersion .startsWith ("14" ) || javaVersion .startsWith ("15" )) {
94
95
expectedClass = IOException .class ;
95
96
} else {
96
97
expectedClass = IllegalArgumentException .class ;
You can’t perform that action at this time.
0 commit comments