commit 9d7ca0f09311054378e67c6c0d442f25a5b42de5 Author: Harrison Date: Fri Apr 24 15:34:39 2020 -0500 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e9acc5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,127 @@ + +# Created by https://www.gitignore.io/api/java,maven,eclipse,visualstudiocode +# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,visualstudiocode + +### Eclipse ### +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# CDT- autotools +.autotools + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + +# Annotation Processing +.apt_generated/ + +# Scala IDE specific (Scala & Java development for Eclipse) +.cache-main +.scala_dependencies +.worksheet + +### Eclipse Patch ### +# Eclipse Core +.project + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Annotation Processing +.apt_generated + +.sts4-cache/ + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +### Maven ### +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +.mvn/wrapper/maven-wrapper.jar +.flattened-pom.xml + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history + +# End of https://www.gitignore.io/api/java,maven,eclipse,visualstudiocode + +#Additional +**/*.code-workspace +local_tools diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0b9bc1d --- /dev/null +++ b/pom.xml @@ -0,0 +1,18 @@ + + 4.0.0 + ca.recrown.minecraftdiscordtether + minecraftdiscordtether + jar + 1.0.0 + minecraftdiscordtether + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + diff --git a/src/main/java/ca/recrown/minecraftdiscordtether/App.java b/src/main/java/ca/recrown/minecraftdiscordtether/App.java new file mode 100644 index 0000000..6e8daa7 --- /dev/null +++ b/src/main/java/ca/recrown/minecraftdiscordtether/App.java @@ -0,0 +1,13 @@ +package ca.recrown.minecraftdiscordtether; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/ca/recrown/minecraftdiscordtether/AppTest.java b/src/test/java/ca/recrown/minecraftdiscordtether/AppTest.java new file mode 100644 index 0000000..208ff05 --- /dev/null +++ b/src/test/java/ca/recrown/minecraftdiscordtether/AppTest.java @@ -0,0 +1,38 @@ +package ca.recrown.minecraftdiscordtether; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +}