Hi all, I can run maven failsafe plugin successfully locally and see the results for integration test cases. But when I run them with Jenkin with the same failsafe:integration-test goal, my integration tests are not running with the following message. I am using Jenkins 1.514. Is the issue with my current Jenkins version or am I missing anything. I spent lot of hours on this issue. Will appreciate any help on this. [INFO] *--- maven-failsafe-plugin:2.16:verify (default-cli) @ database-core ---*[INFO] No tests to run. [JENKINS] Recording test results Here is failsafe section in my pom.xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.16</version> <configuration> <reportsDirectory>${basedir}/target/surefire-reports</reportsDirectory> <includes> <include>**/*ITest.java</include> </includes> </configuration> <executions> <execution> <id>failsafe-integration-tests</id> <phase>integration-test</phase> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin>
-- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.