diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8bb7fed --- /dev/null +++ b/.gitignore @@ -0,0 +1,111 @@ +### Java template +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +### Eclipse template +*.pydevproject +.metadata +.gradle +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath + +# Eclipse Core +.project + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Java annotation processor (APT) +.factorypath + +# PDT-specific +.buildpath + +# sbteclipse plugin +.target + +# TeXlipse plugin +.texlipse +### Maven template +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio + +*.iml + +## Directory-based project format: +.idea/ +# if you remove the above rule, at least ignore the following: + +# User-specific stuff: +# .idea/workspace.xml +# .idea/tasks.xml +# .idea/dictionaries + +# Sensitive or high-churn files: +# .idea/dataSources.ids +# .idea/dataSources.xml +# .idea/sqlDataSources.xml +# .idea/dynamic.xml +# .idea/uiDesigner.xml + +# Gradle: +# .idea/gradle.xml +# .idea/libraries + +# Mongo Explorer plugin: +# .idea/mongoSettings.xml + +## File-based project format: +*.ipr +*.iws + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4b21a66 --- /dev/null +++ b/pom.xml @@ -0,0 +1,80 @@ + + + 4.0.0 + + net.samagames + Bomberman + 1.0.0 + + + UTF-8 + 1.8 + 1.8 + + + + + + test + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + package + + + + + + + run + + + + + + + + + + + + + samagames-public + http://maven.samagames.net/public/ + + + + samagames-developpers + http://maven.samagames.net/developpers/ + + + + + + org.spigotmc + spigot + 1.8.8-R0.1-SNAPSHOT + provided + + + + net.samagames + SamaGamesAPI + 1.0.0 + compile + + + * + * + + + + + \ No newline at end of file diff --git a/src/main/java/fr/azuxul/bomberman/Bomberman.java b/src/main/java/fr/azuxul/bomberman/Bomberman.java new file mode 100644 index 0000000..84ef80e --- /dev/null +++ b/src/main/java/fr/azuxul/bomberman/Bomberman.java @@ -0,0 +1,17 @@ +package fr.azuxul.bomberman; + +import org.bukkit.plugin.java.JavaPlugin; + +/** + * Main class of Bomberman plugin + * + * @author Azuxul + * @version 1.0 + */ +public class Bomberman extends JavaPlugin { + + @Override + public void onEnable() { + + } +} diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..01a1fee --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,5 @@ +name: Bomberman +main: fr.azuxul.bomberman.Bomberman +version: 1.0-SNAPSHOT +author: Azuxul +depend: [SamaGamesAPI]