File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 29
29
<packaging >jar</packaging >
30
30
31
31
<properties >
32
+ <!-- makes sure core is portable to lowest common denominator -->
32
33
<kotlin .compiler.jdkHome>${env.JDK_16} </kotlin .compiler.jdkHome>
33
34
</properties >
34
35
39
40
<plugins >
40
41
<plugin >
41
42
<artifactId >maven-surefire-plugin</artifactId >
42
- <configuration >
43
- <forkMode >once</forkMode >
44
- <jvm >${env.JDK_16} /bin/java</jvm >
45
- <argLine >-ea -Xmx1g -Xms1g</argLine >
46
- </configuration >
43
+ <executions >
44
+ <!-- fork tests under jdk 1.6 as an additional execution -->
45
+ <execution >
46
+ <id >jdk16-test</id >
47
+ <phase >test</phase >
48
+ <goals ><goal >test</goal ></goals >
49
+ <configuration >
50
+ <forkMode >once</forkMode >
51
+ <jvm >${env.JDK_16} /bin/java</jvm >
52
+ <argLine >-ea -Xmx1g -Xms1g</argLine >
53
+ </configuration >
54
+ </execution >
55
+ </executions >
47
56
</plugin >
48
57
<plugin >
49
58
<groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments