From c4adab88818a93a39aac778d140efc4958244b92 Mon Sep 17 00:00:00 2001 From: lixfel Date: Wed, 27 Mar 2019 15:32:35 +0100 Subject: [PATCH] Initial project setup --- .gitignore | 1 + pom.xml | 78 +++++++++++++++++++ schematicsystem.iml | 25 ++++++ .../schematicsystem/SchematicSystem.java | 4 + src/plugin.yml | 0 5 files changed, 108 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 schematicsystem.iml create mode 100644 src/de/warking/schematicsystem/SchematicSystem.java create mode 100644 src/plugin.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..27287e3 --- /dev/null +++ b/pom.xml @@ -0,0 +1,78 @@ + + + 4.0.0 + + de.warking + SchematicSystem + 1.0 + jar + https://maven.apache.org + + + UTF-8 + + + + + maven + https://warking.de:81/maven/ + + + spigotmc-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + + src + + + src + + **/*.java + **/*.kt + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.1 + + 1.8 + 1.8 + + + + + + + + org.spigotmc + spigot-api + 1.12.2-R0.1-SNAPSHOT + provided + + + warking + SpigotCore + 1.0 + provided + + + warking + WorldEdit + 1.0 + provided + + + warking + FAWE + 1.0 + provided + + + \ No newline at end of file diff --git a/schematicsystem.iml b/schematicsystem.iml new file mode 100644 index 0000000..73f0348 --- /dev/null +++ b/schematicsystem.iml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/de/warking/schematicsystem/SchematicSystem.java b/src/de/warking/schematicsystem/SchematicSystem.java new file mode 100644 index 0000000..70f8d5a --- /dev/null +++ b/src/de/warking/schematicsystem/SchematicSystem.java @@ -0,0 +1,4 @@ +package de.warking.schematicsystem; + +public class SchematicSystem { +} diff --git a/src/plugin.yml b/src/plugin.yml new file mode 100644 index 0000000..e69de29