[ https://issues.apache.org/jira/browse/SUREFIRE-1747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17022707#comment-17022707 ]
Atle Tokle commented on SUREFIRE-1747: -------------------------------------- [~tibordigana] That was not the problem. The maven-failsafe-plugin was added, and I was running mvn verify. And I did see in the output that maven-failsafe-plugin did start first doing goal integration-test and then goal verify. But without running the test it should run. The one change to my project that fixed the problem was adding <phase>post-integration-test</phase> to the spring-boot-maven-plugin. > spring-boot-maven-plugin with goal repackage make tests to silently not > execute > ------------------------------------------------------------------------------- > > Key: SUREFIRE-1747 > URL: https://issues.apache.org/jira/browse/SUREFIRE-1747 > Project: Maven Surefire > Issue Type: Bug > Components: Maven Failsafe Plugin > Affects Versions: 3.0.0-M4 > Reporter: Atle Tokle > Assignee: Tibor Digana > Priority: Major > > When integration-testing a spring boot application, and also having this > plugin: > {code:xml} > <plugin> > <groupId>org.springframework.boot</groupId> > <artifactId>spring-boot-maven-plugin</artifactId> > <executions> > <execution> > <goals> > <goal>repackage</goal> > </goals> > </execution> > </executions> > </plugin> > {code} > the test is not executed by maven-failsafe-plugin. And no errors or warnings > is displayed to indicate that code is not tested. > When configuring phace like this they are executed > {code:xml} > <plugin> > <groupId>org.springframework.boot</groupId> > <artifactId>spring-boot-maven-plugin</artifactId> > <executions> > <execution> > <phase>post-integration-test</phase> > <goals> > <goal>repackage</goal> > </goals> > </execution> > </executions> > </plugin> > {code} > I found the answer here > https://stackoverflow.com/questions/50705270/mvn-spring-boot-plugin-breaks-integration-testing > But the build should either break or tests run. -- This message was sent by Atlassian Jira (v8.3.4#803005)