Repository: accumulo Updated Branches: refs/heads/1.7 f1ffe5918 -> cead3978f refs/heads/1.8 a4fdcf205 -> a4afd1bfd refs/heads/master ea49687ce -> 3c16580b6
ACCUMULO-4438 Skip failsafe groups in maven-plugin In the accumulo-maven-plugin's own IT, override the parent POM maven-failsafe-plugin configuration to explicitly skip the groups/excludeGroups properties. This forces the accumulo-maven-plugin IT to run at the integration-tests phase, since it doesn't use JUnit categories. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/dd5bd0c8 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/dd5bd0c8 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/dd5bd0c8 Branch: refs/heads/1.7 Commit: dd5bd0c840187422219aef76014d736e3591b577 Parents: f1ffe59 Author: Christopher Tubbs <ctubb...@apache.org> Authored: Wed Aug 31 18:03:30 2016 -0400 Committer: Christopher Tubbs <ctubb...@apache.org> Committed: Wed Aug 31 19:43:59 2016 -0400 ---------------------------------------------------------------------- maven-plugin/src/it/plugin-test/pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/dd5bd0c8/maven-plugin/src/it/plugin-test/pom.xml ---------------------------------------------------------------------- diff --git a/maven-plugin/src/it/plugin-test/pom.xml b/maven-plugin/src/it/plugin-test/pom.xml index 2eb8626..3b0b7f7 100644 --- a/maven-plugin/src/it/plugin-test/pom.xml +++ b/maven-plugin/src/it/plugin-test/pom.xml @@ -96,6 +96,23 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <executions> + <execution> + <id>run-integration-tests</id> + <goals> + <goal>integration-test</goal> + <goal>verify</goal> + </goals> + <configuration> + <excludedGroups combine.self="override" /> + <groups combine.self="override" /> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>@project.groupId@</groupId> <artifactId>@project.artifactId@</artifactId> <version>@project.version@</version>