diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..4559ca0 --- /dev/null +++ b/.classpath @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.gitignore b/.gitignore index 4c8fd93..0de5a77 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ local.properties # Typically, this file would be tracked if it contains build/dependency configurations: #.project +/target/ diff --git a/.project b/.project new file mode 100644 index 0000000..dead7e4 --- /dev/null +++ b/.project @@ -0,0 +1,23 @@ + + + Arcade64 + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0c84de0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,87 @@ + + + + 4.0.0 + + Arcade64 + Arcade64 + 0.0.1-SNAPSHOT + + Arcade64 + + http://www.example.com + + + UTF-8 + 11 + 11 + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.1 + test + + + org.junit.jupiter + junit-jupiter-engine + 5.7.2 + test + + + junit + junit + 4.11 + test + + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + diff --git a/src/main/java/Arcade64/Arcade64/App.java b/src/main/java/Arcade64/Arcade64/App.java new file mode 100644 index 0000000..baf93cd --- /dev/null +++ b/src/main/java/Arcade64/Arcade64/App.java @@ -0,0 +1,13 @@ +package Arcade64.Arcade64; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/Arcade64/Arcade64/AppTest.java b/src/test/java/Arcade64/Arcade64/AppTest.java new file mode 100644 index 0000000..68e9656 --- /dev/null +++ b/src/test/java/Arcade64/Arcade64/AppTest.java @@ -0,0 +1,20 @@ +package Arcade64.Arcade64; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +/** + * Unit test for simple App. + */ +public class AppTest +{ + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() + { + assertTrue( true ); + } +}