diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..52c5902 --- /dev/null +++ b/pom.xml @@ -0,0 +1,90 @@ + + + 4.0.0 + + edu.group5.app + Help-Me-Help + 1.0-SNAPSHOT + + Help-Me-Help + + 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/src/main/java/edu/group5/app/App.java b/src/main/java/edu/group5/app/App.java new file mode 100644 index 0000000..7fd22a6 --- /dev/null +++ b/src/main/java/edu/group5/app/App.java @@ -0,0 +1,10 @@ +package edu.group5.app; + +/** + * Hello world! + */ +public class App { + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/src/test/java/edu/group5/app/AppTest.java b/src/test/java/edu/group5/app/AppTest.java new file mode 100644 index 0000000..d186aa9 --- /dev/null +++ b/src/test/java/edu/group5/app/AppTest.java @@ -0,0 +1,19 @@ +package edu.group5.app; + +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); + } +}