From a4a6c87fa2830c2595b65e67018d14acd9ee2d57 Mon Sep 17 00:00:00 2001 From: Dawson Hessler Date: Tue, 15 Jun 2021 10:38:14 -0400 Subject: [PATCH] Starting project --- Bukkit/pom.xml | 28 ++++++++++++++ Bungee/pom.xml | 19 ++++++++++ Common/pom.xml | 19 ++++++++++ .../java/dev/brighten/antivpn/AntiVPN.java | 18 +++++++++ pom.xml | 38 +++++++++++++++++++ 5 files changed, 122 insertions(+) create mode 100644 Bukkit/pom.xml create mode 100644 Bungee/pom.xml create mode 100644 Common/pom.xml create mode 100644 Common/src/main/java/dev/brighten/antivpn/AntiVPN.java create mode 100644 pom.xml diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml new file mode 100644 index 0000000..743f59d --- /dev/null +++ b/Bukkit/pom.xml @@ -0,0 +1,28 @@ + + + + AntiVPN + dev.brighten.antivpn + 1.0-SNAPSHOT + + 4.0.0 + + Bukkit + + + 8 + 8 + + + + + org.github.spigot + 1.13.2 + 1.13.2 + provided + + + + \ No newline at end of file diff --git a/Bungee/pom.xml b/Bungee/pom.xml new file mode 100644 index 0000000..d82e0eb --- /dev/null +++ b/Bungee/pom.xml @@ -0,0 +1,19 @@ + + + + AntiVPN + dev.brighten.antivpn + 1.0-SNAPSHOT + + 4.0.0 + + Bungee + + + 8 + 8 + + + \ No newline at end of file diff --git a/Common/pom.xml b/Common/pom.xml new file mode 100644 index 0000000..71b181a --- /dev/null +++ b/Common/pom.xml @@ -0,0 +1,19 @@ + + + + AntiVPN + dev.brighten.antivpn + 1.0-SNAPSHOT + + 4.0.0 + + Common + + + 8 + 8 + + + \ No newline at end of file diff --git a/Common/src/main/java/dev/brighten/antivpn/AntiVPN.java b/Common/src/main/java/dev/brighten/antivpn/AntiVPN.java new file mode 100644 index 0000000..b93923b --- /dev/null +++ b/Common/src/main/java/dev/brighten/antivpn/AntiVPN.java @@ -0,0 +1,18 @@ +package dev.brighten.antivpn; + +public class AntiVPN { + + private static AntiVPN INSTANCE; + + public static void start() { + INSTANCE = new AntiVPN(); + } + + public static AntiVPN getInstance() { + assert INSTANCE != null: "AntiVPN has not been initialized!"; + + return INSTANCE; + } + + public void getAPI() +} diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..35c13b8 --- /dev/null +++ b/pom.xml @@ -0,0 +1,38 @@ + + + 4.0.0 + + dev.brighten.antivpn + AntiVPN + pom + 1.0-SNAPSHOT + + Common + Bungee + Bukkit + + + + 8 + 8 + + + + + funkemunky-releases + https://nexus.funkemunky.cc/content/repositories/releases/ + + + + + + cc.funkemunky.utils + lombok + 1.18.0 + provided + + + + \ No newline at end of file