diff --git a/its/src/it/simple/pom.xml b/its/src/it/simple/pom.xml index 4ae7469..b65e472 100644 --- a/its/src/it/simple/pom.xml +++ b/its/src/it/simple/pom.xml @@ -20,6 +20,12 @@ javax.inject 1 + + junit + junit + 4.13.2 + test + diff --git a/its/src/it/simple/src/test/java/org/eclipse/sisu/mojos/its/simple/ComponentTest.java b/its/src/it/simple/src/test/java/org/eclipse/sisu/mojos/its/simple/ComponentTest.java index fc883fa..477d1e5 100644 --- a/its/src/it/simple/src/test/java/org/eclipse/sisu/mojos/its/simple/ComponentTest.java +++ b/its/src/it/simple/src/test/java/org/eclipse/sisu/mojos/its/simple/ComponentTest.java @@ -10,8 +10,11 @@ *******************************************************************************/ package org.eclipse.sisu.mojos; +import org.junit.Test; import javax.inject.Named; @Named public class ComponentTest { + @Test + public void dummyTest() {} }