From 7c5558c4203017d74640206ca26eda09b4593661 Mon Sep 17 00:00:00 2001 From: Olof Larsson Date: Wed, 7 Dec 2011 17:12:00 +0100 Subject: [PATCH] first commit --- .gitignore | 20 ++++++++++++++++++++ README.md | 8 ++++++++ plugin.yml | 8 ++++++++ 3 files changed, 36 insertions(+) create mode 100755 .gitignore create mode 100755 README.md create mode 100755 plugin.yml diff --git a/.gitignore b/.gitignore new file mode 100755 index 00000000..c432b8be --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Eclipse stuff +/.classpath +/.project +/.settings + +# NetBeans +/nbproject +/build.xml + +# vim +.*.sw[a-p] + +# various other potential build files +/build +/bin +/dist +/localexport.jardesc + +# Mac filesystem dust +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md new file mode 100755 index 00000000..125440f6 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +MassiveCraftCore - This bukkit plugin contains components for developing other bukkit plugins. +==================== + +License +---------- +This project is open source. We are using [The MIT Licence](http://www.opensource.org/licenses/MIT)
+This project includes [GSON](http://code.google.com/p/google-gson/) which has an [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0). + diff --git a/plugin.yml b/plugin.yml new file mode 100755 index 00000000..75826f15 --- /dev/null +++ b/plugin.yml @@ -0,0 +1,8 @@ +name: mcore +version: 1.0.0 +main: com.massivecraft.core.MCore +authors: [Olof Larsson] +softdepend: [Vault, Spout] +commands: + mcore: + description: Reference command for mcore. \ No newline at end of file