diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..850a8a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/.settings +/bin +/target +/.classpath +/.project \ No newline at end of file diff --git a/README b/README deleted file mode 100644 index de632ef..0000000 --- a/README +++ /dev/null @@ -1 +0,0 @@ -Will write this when I have time \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..dfa7e15 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Will write when I have time. \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..342e5cc --- /dev/null +++ b/pom.xml @@ -0,0 +1,59 @@ + + 4.0.0 + com.cypherx + xauth + 1.2.2 + xAuth + + UTF-8 + + http://www.bukkit.org + + + org.bukkit + bukkit + 0.0.1-SNAPSHOT + jar + compile + + + org.bukkit + craftbukkit + 0.0.1-SNAPSHOT + jar + compile + + + com.nijikokun.bukkit + Permissions + 2.7 + jar + compile + + + + ${project.name} + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + UTF-8 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.1 + + + package + + + + + + \ No newline at end of file diff --git a/src/com/cypherx/xauth/CommandHandler.java b/src/main/java/com/cypherx/xauth/CommandHandler.java similarity index 100% rename from src/com/cypherx/xauth/CommandHandler.java rename to src/main/java/com/cypherx/xauth/CommandHandler.java diff --git a/src/com/cypherx/xauth/Session.java b/src/main/java/com/cypherx/xauth/Session.java similarity index 100% rename from src/com/cypherx/xauth/Session.java rename to src/main/java/com/cypherx/xauth/Session.java diff --git a/src/com/cypherx/xauth/Settings.java b/src/main/java/com/cypherx/xauth/Settings.java similarity index 100% rename from src/com/cypherx/xauth/Settings.java rename to src/main/java/com/cypherx/xauth/Settings.java diff --git a/src/com/cypherx/xauth/Strings.java b/src/main/java/com/cypherx/xauth/Strings.java similarity index 100% rename from src/com/cypherx/xauth/Strings.java rename to src/main/java/com/cypherx/xauth/Strings.java diff --git a/src/com/cypherx/xauth/Whirlpool.java b/src/main/java/com/cypherx/xauth/Whirlpool.java similarity index 100% rename from src/com/cypherx/xauth/Whirlpool.java rename to src/main/java/com/cypherx/xauth/Whirlpool.java diff --git a/src/com/cypherx/xauth/xAuth.java b/src/main/java/com/cypherx/xauth/xAuth.java similarity index 100% rename from src/com/cypherx/xauth/xAuth.java rename to src/main/java/com/cypherx/xauth/xAuth.java diff --git a/src/com/cypherx/xauth/xAuthBlockListener.java b/src/main/java/com/cypherx/xauth/xAuthBlockListener.java similarity index 100% rename from src/com/cypherx/xauth/xAuthBlockListener.java rename to src/main/java/com/cypherx/xauth/xAuthBlockListener.java diff --git a/src/com/cypherx/xauth/xAuthEntityListener.java b/src/main/java/com/cypherx/xauth/xAuthEntityListener.java similarity index 100% rename from src/com/cypherx/xauth/xAuthEntityListener.java rename to src/main/java/com/cypherx/xauth/xAuthEntityListener.java diff --git a/src/com/cypherx/xauth/xAuthPlayerListener.java b/src/main/java/com/cypherx/xauth/xAuthPlayerListener.java similarity index 100% rename from src/com/cypherx/xauth/xAuthPlayerListener.java rename to src/main/java/com/cypherx/xauth/xAuthPlayerListener.java diff --git a/src/plugin.yml b/src/main/resources/plugin.yml similarity index 100% rename from src/plugin.yml rename to src/main/resources/plugin.yml