diff --git a/ic_plugin_core/.mvn/jvm.config b/ic_plugin_core/.mvn/jvm.config new file mode 100644 index 0000000..e69de29 diff --git a/ic_plugin_core/.mvn/maven.config b/ic_plugin_core/.mvn/maven.config new file mode 100644 index 0000000..e69de29 diff --git a/ic_plugin_core/pom.xml b/ic_plugin_core/pom.xml new file mode 100644 index 0000000..f0eb4e9 --- /dev/null +++ b/ic_plugin_core/pom.xml @@ -0,0 +1,90 @@ + + + 4.0.0 + + nl.interestingcorner + ic_plugin_core + 1.0-SNAPSHOT + + ic_plugin_core + + http://www.example.com + + + UTF-8 + 17 + + + + + + org.junit + junit-bom + 5.11.0 + pom + import + + + + + + + org.junit.jupiter + junit-jupiter-api + test + + + + org.junit.jupiter + junit-jupiter-params + test + + + + + + + + + maven-clean-plugin + 3.4.0 + + + + maven-resources-plugin + 3.3.1 + + + maven-compiler-plugin + 3.13.0 + + + maven-surefire-plugin + 3.3.0 + + + maven-jar-plugin + 3.4.2 + + + maven-install-plugin + 3.1.2 + + + maven-deploy-plugin + 3.1.2 + + + + maven-site-plugin + 3.12.1 + + + maven-project-info-reports-plugin + 3.6.1 + + + + + diff --git a/ic_plugin_core/src/main/java/nl/interestingcorner/App.java b/ic_plugin_core/src/main/java/nl/interestingcorner/App.java new file mode 100644 index 0000000..a1d310c --- /dev/null +++ b/ic_plugin_core/src/main/java/nl/interestingcorner/App.java @@ -0,0 +1,10 @@ +package nl.interestingcorner; + +/** + * Hello world! + */ +public class App { + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/ic_plugin_core/src/test/java/nl/interestingcorner/AppTest.java b/ic_plugin_core/src/test/java/nl/interestingcorner/AppTest.java new file mode 100644 index 0000000..6d3028e --- /dev/null +++ b/ic_plugin_core/src/test/java/nl/interestingcorner/AppTest.java @@ -0,0 +1,19 @@ +package nl.interestingcorner; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import org.junit.jupiter.api.Test; + +/** + * Unit test for simple App. + */ +public class AppTest { + + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() { + assertTrue(true); + } +}