commit 5efbf0cd7cda9523fb01090eb50626f3d1c9d335 Author: alisolarflare Date: Tue Oct 3 20:47:58 2017 -0400 Initialization diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bdb0cab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/.project b/.project new file mode 100644 index 0000000..dcbfcc8 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + ChromaFortress + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/ChromaFortress/.classpath b/ChromaFortress/.classpath new file mode 100644 index 0000000..a67b19b --- /dev/null +++ b/ChromaFortress/.classpath @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/ChromaFortress/.project b/ChromaFortress/.project new file mode 100644 index 0000000..d4c3fd8 --- /dev/null +++ b/ChromaFortress/.project @@ -0,0 +1,23 @@ + + + ChromaFortress + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/ChromaFortress/.settings/org.eclipse.core.resources.prefs b/ChromaFortress/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..f9fe345 --- /dev/null +++ b/ChromaFortress/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/ChromaFortress/.settings/org.eclipse.jdt.core.prefs b/ChromaFortress/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..6e80039 --- /dev/null +++ b/ChromaFortress/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/ChromaFortress/.settings/org.eclipse.m2e.core.prefs b/ChromaFortress/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/ChromaFortress/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/ChromaFortress/plugin.yml b/ChromaFortress/plugin.yml new file mode 100644 index 0000000..9af0be4 --- /dev/null +++ b/ChromaFortress/plugin.yml @@ -0,0 +1,5 @@ +name: ChromaFortress +main: com.github.tbmcplugins.ChromaFortress.Main +version: 0.0.0 + +description: Nothing to see here \ No newline at end of file diff --git a/ChromaFortress/pom.xml b/ChromaFortress/pom.xml new file mode 100644 index 0000000..347ec17 --- /dev/null +++ b/ChromaFortress/pom.xml @@ -0,0 +1,35 @@ + + 4.0.0 + + com.github.tbmcplugins + ChromaFortress + 0.0.1-SNAPSHOT + jar + + ChromaFortress + http://maven.apache.org + + + UTF-8 + + + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + + junit + junit + 3.8.1 + test + + + org.spigotmc + spigot-api + 1.12.2-R0.1-SNAPSHOT + + + diff --git a/ChromaFortress/src/main/java/com/github/tbmcplugins/ChromaFortress/Main.java b/ChromaFortress/src/main/java/com/github/tbmcplugins/ChromaFortress/Main.java new file mode 100644 index 0000000..3874225 --- /dev/null +++ b/ChromaFortress/src/main/java/com/github/tbmcplugins/ChromaFortress/Main.java @@ -0,0 +1,18 @@ +package com.github.tbmcplugins.ChromaFortress; + +import org.bukkit.plugin.java.JavaPlugin; + +public class Main extends JavaPlugin { + @Override + public void onEnable(){ + this.getLogger().info("Chroma Fortress Loading..."); + this.getLogger().info("Chroma Fortress Loaded!"); + } + + @Override + public void onDisable(){ + this.getLogger().info("Chroma Fortress Disabling..."); + this.getLogger().info("Chroma Fortress Disabled!"); + + } +} diff --git a/ChromaFortress/src/test/java/com/github/tbmcplugins/ChromaFortress/AppTest.java b/ChromaFortress/src/test/java/com/github/tbmcplugins/ChromaFortress/AppTest.java new file mode 100644 index 0000000..7714809 --- /dev/null +++ b/ChromaFortress/src/test/java/com/github/tbmcplugins/ChromaFortress/AppTest.java @@ -0,0 +1,38 @@ +package com.github.tbmcplugins.ChromaFortress; + +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 ); + } +} diff --git a/ChromaFortress/target/classes/com/github/tbmcplugins/ChromaFortress/Main.class b/ChromaFortress/target/classes/com/github/tbmcplugins/ChromaFortress/Main.class new file mode 100644 index 0000000..6a27cff Binary files /dev/null and b/ChromaFortress/target/classes/com/github/tbmcplugins/ChromaFortress/Main.class differ diff --git a/ChromaFortress/target/test-classes/com/github/tbmcplugins/ChromaFortress/AppTest.class b/ChromaFortress/target/test-classes/com/github/tbmcplugins/ChromaFortress/AppTest.class new file mode 100644 index 0000000..06eaafa Binary files /dev/null and b/ChromaFortress/target/test-classes/com/github/tbmcplugins/ChromaFortress/AppTest.class differ