From f4ea8886b87f382a5e264e640247dac0d612e409 Mon Sep 17 00:00:00 2001 From: SemvdH Date: Sun, 9 Nov 2025 22:48:53 +0100 Subject: [PATCH] Add base project --- ic_plugin_core/.mvn/jvm.config | 0 ic_plugin_core/.mvn/maven.config | 0 ic_plugin_core/pom.xml | 90 +++++++++++++++++++ .../main/java/nl/interestingcorner/App.java | 10 +++ .../java/nl/interestingcorner/AppTest.java | 19 ++++ 5 files changed, 119 insertions(+) create mode 100644 ic_plugin_core/.mvn/jvm.config create mode 100644 ic_plugin_core/.mvn/maven.config create mode 100644 ic_plugin_core/pom.xml create mode 100644 ic_plugin_core/src/main/java/nl/interestingcorner/App.java create mode 100644 ic_plugin_core/src/test/java/nl/interestingcorner/AppTest.java 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); + } +}