diff --git a/io/pom.xml b/io/pom.xml index d679294b..73061522 100644 --- a/io/pom.xml +++ b/io/pom.xml @@ -26,16 +26,16 @@ + org.apache.maven.plugins - maven-failsafe-plugin - 3.0.0-M5 + maven-surefire-plugin - - integration-test - verify - + default-test + + true + @@ -67,4 +67,4 @@ - \ No newline at end of file + diff --git a/io/src/test/java/io/smallrye/common/io/jar/JarEntriesIT.java b/io/src/test/java/io/smallrye/common/io/jar/JarEntriesTest.java similarity index 93% rename from io/src/test/java/io/smallrye/common/io/jar/JarEntriesIT.java rename to io/src/test/java/io/smallrye/common/io/jar/JarEntriesTest.java index d4811ba5..0604697a 100644 --- a/io/src/test/java/io/smallrye/common/io/jar/JarEntriesIT.java +++ b/io/src/test/java/io/smallrye/common/io/jar/JarEntriesTest.java @@ -12,9 +12,7 @@ import org.junit.jupiter.api.condition.EnabledOnJre; import org.junit.jupiter.api.condition.JRE; -// This needs to be run as an integration-test -public class JarEntriesIT { - +public class JarEntriesTest { @Test @DisabledOnJre(JRE.JAVA_8) public void shouldUseMultiReleaseName() throws IOException { @@ -32,5 +30,4 @@ public void shouldUseName() throws IOException { JarEntry jarEntry = jarFile.getJarEntry("foo.txt"); assertEquals("foo.txt", JarEntries.getRealName(jarEntry)); } - }