File tree Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 7171 <scope >test</scope >
7272 </dependency >
7373 </dependencies >
74+ <build >
75+ <plugins >
76+ <!--
77+ Override plugin to be executed every test in a new JVM.
78+ This is required because there are some system property set.
79+ -->
80+ <plugin >
81+ <groupId >org.apache.maven.plugins</groupId >
82+ <artifactId >maven-surefire-plugin</artifactId >
83+ <configuration >
84+ <forkCount >1</forkCount >
85+ <reuseForks >false</reuseForks >
86+ <useModulePath >false</useModulePath >
87+ <trimStackTrace >false</trimStackTrace >
88+ <!-- DO NOT override argLine instead use surefire.argLine -->
89+ <argLine >${surefire.argLine} ${surefire.coverage.argline} </argLine >
90+ <redirectTestOutputToFile >true</redirectTestOutputToFile >
91+ </configuration >
92+ </plugin >
93+ </plugins >
94+ </build >
7495</project >
Original file line number Diff line number Diff line change 2222 <test name =" microprofile-config TCK" >
2323 <packages >
2424 <package name =" org.eclipse.microprofile.config.tck.*" >
25- <!--
26- Currently failing because requires this PR:
27- https://github.com/eclipse/microprofile-config/pull/743
28- Ignoring meanwhile microprofile-config 3.1 is not released
29- -->
30- <exclude name =" org.eclipse.microprofile.config.tck.broken" ></exclude >
3125 </package >
3226 </packages >
3327 </test >
You can’t perform that action at this time.
0 commit comments