diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 87a5986111..39520a4827 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -1,5 +1,6 @@ - + 4.0.0 @@ -102,6 +103,19 @@ none + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-test + verify + + + + org.jacoco jacoco-maven-plugin diff --git a/maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIntegrationTest.java b/maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIT.java similarity index 94% rename from maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIntegrationTest.java rename to maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIT.java index 4ed2c79be2..a13dcc4257 100644 --- a/maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIntegrationTest.java +++ b/maven-plugin/src/test/java/io/codearte/accurest/maven/PluginIT.java @@ -14,7 +14,7 @@ import io.takari.maven.testing.executor.junit.MavenJUnitTestRunner; @RunWith(MavenJUnitTestRunner.class) @MavenVersions({ "3.3.3" }) -public class PluginIntegrationTest { +public class PluginIT { @Rule public final TestResources resources = new TestResources(); @@ -23,7 +23,7 @@ public class PluginIntegrationTest { private final MavenRuntime maven; - public PluginIntegrationTest(MavenRuntime.MavenRuntimeBuilder mavenBuilder) throws Exception { + public PluginIT(MavenRuntime.MavenRuntimeBuilder mavenBuilder) throws Exception { this.maven = mavenBuilder.withCliOptions("-B", "-U").build(); }