neilcsmith-net commented on issue #4089: URL: https://github.com/apache/netbeans/issues/4089#issuecomment-1121120747
This seems related to #3470 Quick look suggests this can be fixed by configuring (eg.) failsafe plugin to run with goal `integration-test` (below) or altering the action in the project to call `failsafe:integration-test`. Would be good if this worked out of the box. Maybe default pom needs adapting or [default actions](https://github.com/apache/netbeans/blob/master/java/maven/src/org/netbeans/modules/maven/execute/defaultActionMappings.xml) need looking at (unit tests call `surefire:test`)? cc/ @matthiasblaesing @ebarboni - adding NB14 milestone for now. ``` <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <goals> <goal>integration-test</goal> </goals> </execution> </executions> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
