From 152a64b9c381e4f69bd29982445fc290c4b56f41 Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sat, 26 May 2018 09:12:39 -0400 Subject: [PATCH] Initial commit --- pom.xml | 65 ++++++++++++++++++++++ src/main/java/net/jrtechs/www/App.java | 13 +++++ src/test/java/net/jrtechs/www/AppTest.java | 20 +++++++ 3 files changed, 98 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/net/jrtechs/www/App.java create mode 100644 src/test/java/net/jrtechs/www/AppTest.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..5080960 --- /dev/null +++ b/pom.xml @@ -0,0 +1,65 @@ + + + + 4.0.0 + + net.jrtechs.www + SteamFriendsGraph + 0.1 + + SteamFriendsGraph + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 4.11 + test + + + + + + + + maven-clean-plugin + 3.0.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.7.0 + + + maven-surefire-plugin + 2.20.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + + diff --git a/src/main/java/net/jrtechs/www/App.java b/src/main/java/net/jrtechs/www/App.java new file mode 100644 index 0000000..6a6c180 --- /dev/null +++ b/src/main/java/net/jrtechs/www/App.java @@ -0,0 +1,13 @@ +package net.jrtechs.www; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/net/jrtechs/www/AppTest.java b/src/test/java/net/jrtechs/www/AppTest.java new file mode 100644 index 0000000..13ed9ed --- /dev/null +++ b/src/test/java/net/jrtechs/www/AppTest.java @@ -0,0 +1,20 @@ +package net.jrtechs.www; + +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 ); + } +}