Re: Re[2]: How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-04 Thread Tibor Digana
I think you are talking about the issue https://issues.apache.org/jira/browse/SUREFIRE-1809 See the last comment, the workaround is to set false in plugin config. Of course this is a temporal workaround. I have understood the title of the message as you are a fan of JPMS. T On Fri, Jul 3, 2020

Re[2]: How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-03 Thread Alex Orlov
Hi Tibor,   Thank you for your answer. I’ve read the link you provided but didn’t find the answer to my question. I don’t have any questions about how to run jpms tests. I can’t understand how tests are executed without junit platform in boot layer. As I understand we have the following chain:

Re: How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-03 Thread Tibor Digana
Hi Alex, This is the documentation regarding this topic https://maven.apache.org/surefire/maven-surefire-plugin/examples/jpms.html and you can see the links with the integration tests for TestNG, JUnit4 and JUnit5. These tests use JPMS in main and tests as well. You should be able to access

How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-03 Thread Alex Orlov
Hi all,   I want to understand how surefire 3.0.0-M5 run JPMS with junit5. When I run my tests on boot layer I see only two junit modules:   org.junit.jupiter.api org.junit.platform.commons   And there is no platform, no engine. Besides "java.class.path" is empty. Could anyone explain where is