From a2ab7d4d9f6f3940efe66d5dd9f6702668a86422 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Sun, 13 Mar 2022 19:42:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E5=A4=B9?= =?UTF-8?q?=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- {easysql-plugin-api => api}/pom.xml | 0 .../java/cc/carm/plugin/easysql/EasySQLAPI.java | 0 .../carm/plugin/easysql/api/DBConfiguration.java | 0 .../carm/plugin/easysql/api/EasySQLRegistry.java | 0 .../cc/carm/plugin/easysql/api/SQLDriverType.java | 0 {easysql-plugin-core => core}/pom.xml | 0 .../carm/plugin/easysql/EasySQLPluginPlatform.java | 0 .../carm/plugin/easysql/EasySQLRegistryImpl.java | 0 .../plugin/easysql/command/EasySQLCommand.java | 0 .../easysql/command/EasySQLHelpFormatter.java | 0 .../easysql/configuration/PluginConfiguration.java | 0 .../carm/plugin/easysql/util/DBPropertiesUtil.java | 0 .../carm/plugin/easysql/util/JarResourceUtils.java | 0 .../cc/carm/plugin/easysql/util/MavenReadUtil.java | 0 .../cc/carm/plugin/easysql/util/VersionReader.java | 0 .../src/main/resources/PLUGIN_INFO | 0 .../src/main/resources/acf-core_zh_CN.properties | 0 .../main/resources/acf-minecraft_zh_CN.properties | 0 .../src/main/resources/config.yml | 0 .../db-properties/.example-mysql.properties | 0 .../src/main/resources/versions.properties | 0 .../{easysql-plugin-bukkit => bukkit}/pom.xml | 0 .../carm/plugin/easysql/BukkitConfiguration.java | 0 .../java/cc/carm/plugin/easysql/EasySQLBukkit.java | 0 .../src/main/resources/plugin.yml | 0 .../{easysql-plugin-bungee => bungee}/pom.xml | 0 .../java/cc/carm/plugin/easysql/EasySQLBungee.java | 0 .../{easysql-plugin-sponge => sponge}/pom.xml | 0 .../{easysql-plugin-velocity => velocity}/pom.xml | 0 .../cc/carm/plugin/easysql/EasySQLVelocity.java | 0 pom.xml | 14 +++++++------- 31 files changed, 7 insertions(+), 7 deletions(-) rename {easysql-plugin-api => api}/pom.xml (100%) rename {easysql-plugin-api => api}/src/main/java/cc/carm/plugin/easysql/EasySQLAPI.java (100%) rename {easysql-plugin-api => api}/src/main/java/cc/carm/plugin/easysql/api/DBConfiguration.java (100%) rename {easysql-plugin-api => api}/src/main/java/cc/carm/plugin/easysql/api/EasySQLRegistry.java (100%) rename {easysql-plugin-api => api}/src/main/java/cc/carm/plugin/easysql/api/SQLDriverType.java (100%) rename {easysql-plugin-core => core}/pom.xml (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/EasySQLPluginPlatform.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/EasySQLRegistryImpl.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/command/EasySQLCommand.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/command/EasySQLHelpFormatter.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/configuration/PluginConfiguration.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/util/DBPropertiesUtil.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/util/JarResourceUtils.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/util/MavenReadUtil.java (100%) rename {easysql-plugin-core => core}/src/main/java/cc/carm/plugin/easysql/util/VersionReader.java (100%) rename {easysql-plugin-core => core}/src/main/resources/PLUGIN_INFO (100%) rename {easysql-plugin-core => core}/src/main/resources/acf-core_zh_CN.properties (100%) rename {easysql-plugin-core => core}/src/main/resources/acf-minecraft_zh_CN.properties (100%) rename {easysql-plugin-core => core}/src/main/resources/config.yml (100%) rename {easysql-plugin-core => core}/src/main/resources/db-properties/.example-mysql.properties (100%) rename {easysql-plugin-core => core}/src/main/resources/versions.properties (100%) rename platforms/{easysql-plugin-bukkit => bukkit}/pom.xml (100%) rename platforms/{easysql-plugin-bukkit => bukkit}/src/main/java/cc/carm/plugin/easysql/BukkitConfiguration.java (100%) rename platforms/{easysql-plugin-bukkit => bukkit}/src/main/java/cc/carm/plugin/easysql/EasySQLBukkit.java (100%) rename platforms/{easysql-plugin-bukkit => bukkit}/src/main/resources/plugin.yml (100%) rename platforms/{easysql-plugin-bungee => bungee}/pom.xml (100%) rename platforms/{easysql-plugin-bungee => bungee}/src/main/java/cc/carm/plugin/easysql/EasySQLBungee.java (100%) rename platforms/{easysql-plugin-sponge => sponge}/pom.xml (100%) rename platforms/{easysql-plugin-velocity => velocity}/pom.xml (100%) rename platforms/{easysql-plugin-velocity => velocity}/src/main/java/cc/carm/plugin/easysql/EasySQLVelocity.java (100%) diff --git a/easysql-plugin-api/pom.xml b/api/pom.xml similarity index 100% rename from easysql-plugin-api/pom.xml rename to api/pom.xml diff --git a/easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/EasySQLAPI.java b/api/src/main/java/cc/carm/plugin/easysql/EasySQLAPI.java similarity index 100% rename from easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/EasySQLAPI.java rename to api/src/main/java/cc/carm/plugin/easysql/EasySQLAPI.java diff --git a/easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/DBConfiguration.java b/api/src/main/java/cc/carm/plugin/easysql/api/DBConfiguration.java similarity index 100% rename from easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/DBConfiguration.java rename to api/src/main/java/cc/carm/plugin/easysql/api/DBConfiguration.java diff --git a/easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/EasySQLRegistry.java b/api/src/main/java/cc/carm/plugin/easysql/api/EasySQLRegistry.java similarity index 100% rename from easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/EasySQLRegistry.java rename to api/src/main/java/cc/carm/plugin/easysql/api/EasySQLRegistry.java diff --git a/easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/SQLDriverType.java b/api/src/main/java/cc/carm/plugin/easysql/api/SQLDriverType.java similarity index 100% rename from easysql-plugin-api/src/main/java/cc/carm/plugin/easysql/api/SQLDriverType.java rename to api/src/main/java/cc/carm/plugin/easysql/api/SQLDriverType.java diff --git a/easysql-plugin-core/pom.xml b/core/pom.xml similarity index 100% rename from easysql-plugin-core/pom.xml rename to core/pom.xml diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/EasySQLPluginPlatform.java b/core/src/main/java/cc/carm/plugin/easysql/EasySQLPluginPlatform.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/EasySQLPluginPlatform.java rename to core/src/main/java/cc/carm/plugin/easysql/EasySQLPluginPlatform.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/EasySQLRegistryImpl.java b/core/src/main/java/cc/carm/plugin/easysql/EasySQLRegistryImpl.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/EasySQLRegistryImpl.java rename to core/src/main/java/cc/carm/plugin/easysql/EasySQLRegistryImpl.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/command/EasySQLCommand.java b/core/src/main/java/cc/carm/plugin/easysql/command/EasySQLCommand.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/command/EasySQLCommand.java rename to core/src/main/java/cc/carm/plugin/easysql/command/EasySQLCommand.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/command/EasySQLHelpFormatter.java b/core/src/main/java/cc/carm/plugin/easysql/command/EasySQLHelpFormatter.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/command/EasySQLHelpFormatter.java rename to core/src/main/java/cc/carm/plugin/easysql/command/EasySQLHelpFormatter.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/configuration/PluginConfiguration.java b/core/src/main/java/cc/carm/plugin/easysql/configuration/PluginConfiguration.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/configuration/PluginConfiguration.java rename to core/src/main/java/cc/carm/plugin/easysql/configuration/PluginConfiguration.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/DBPropertiesUtil.java b/core/src/main/java/cc/carm/plugin/easysql/util/DBPropertiesUtil.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/DBPropertiesUtil.java rename to core/src/main/java/cc/carm/plugin/easysql/util/DBPropertiesUtil.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/JarResourceUtils.java b/core/src/main/java/cc/carm/plugin/easysql/util/JarResourceUtils.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/JarResourceUtils.java rename to core/src/main/java/cc/carm/plugin/easysql/util/JarResourceUtils.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/MavenReadUtil.java b/core/src/main/java/cc/carm/plugin/easysql/util/MavenReadUtil.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/MavenReadUtil.java rename to core/src/main/java/cc/carm/plugin/easysql/util/MavenReadUtil.java diff --git a/easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/VersionReader.java b/core/src/main/java/cc/carm/plugin/easysql/util/VersionReader.java similarity index 100% rename from easysql-plugin-core/src/main/java/cc/carm/plugin/easysql/util/VersionReader.java rename to core/src/main/java/cc/carm/plugin/easysql/util/VersionReader.java diff --git a/easysql-plugin-core/src/main/resources/PLUGIN_INFO b/core/src/main/resources/PLUGIN_INFO similarity index 100% rename from easysql-plugin-core/src/main/resources/PLUGIN_INFO rename to core/src/main/resources/PLUGIN_INFO diff --git a/easysql-plugin-core/src/main/resources/acf-core_zh_CN.properties b/core/src/main/resources/acf-core_zh_CN.properties similarity index 100% rename from easysql-plugin-core/src/main/resources/acf-core_zh_CN.properties rename to core/src/main/resources/acf-core_zh_CN.properties diff --git a/easysql-plugin-core/src/main/resources/acf-minecraft_zh_CN.properties b/core/src/main/resources/acf-minecraft_zh_CN.properties similarity index 100% rename from easysql-plugin-core/src/main/resources/acf-minecraft_zh_CN.properties rename to core/src/main/resources/acf-minecraft_zh_CN.properties diff --git a/easysql-plugin-core/src/main/resources/config.yml b/core/src/main/resources/config.yml similarity index 100% rename from easysql-plugin-core/src/main/resources/config.yml rename to core/src/main/resources/config.yml diff --git a/easysql-plugin-core/src/main/resources/db-properties/.example-mysql.properties b/core/src/main/resources/db-properties/.example-mysql.properties similarity index 100% rename from easysql-plugin-core/src/main/resources/db-properties/.example-mysql.properties rename to core/src/main/resources/db-properties/.example-mysql.properties diff --git a/easysql-plugin-core/src/main/resources/versions.properties b/core/src/main/resources/versions.properties similarity index 100% rename from easysql-plugin-core/src/main/resources/versions.properties rename to core/src/main/resources/versions.properties diff --git a/platforms/easysql-plugin-bukkit/pom.xml b/platforms/bukkit/pom.xml similarity index 100% rename from platforms/easysql-plugin-bukkit/pom.xml rename to platforms/bukkit/pom.xml diff --git a/platforms/easysql-plugin-bukkit/src/main/java/cc/carm/plugin/easysql/BukkitConfiguration.java b/platforms/bukkit/src/main/java/cc/carm/plugin/easysql/BukkitConfiguration.java similarity index 100% rename from platforms/easysql-plugin-bukkit/src/main/java/cc/carm/plugin/easysql/BukkitConfiguration.java rename to platforms/bukkit/src/main/java/cc/carm/plugin/easysql/BukkitConfiguration.java diff --git a/platforms/easysql-plugin-bukkit/src/main/java/cc/carm/plugin/easysql/EasySQLBukkit.java b/platforms/bukkit/src/main/java/cc/carm/plugin/easysql/EasySQLBukkit.java similarity index 100% rename from platforms/easysql-plugin-bukkit/src/main/java/cc/carm/plugin/easysql/EasySQLBukkit.java rename to platforms/bukkit/src/main/java/cc/carm/plugin/easysql/EasySQLBukkit.java diff --git a/platforms/easysql-plugin-bukkit/src/main/resources/plugin.yml b/platforms/bukkit/src/main/resources/plugin.yml similarity index 100% rename from platforms/easysql-plugin-bukkit/src/main/resources/plugin.yml rename to platforms/bukkit/src/main/resources/plugin.yml diff --git a/platforms/easysql-plugin-bungee/pom.xml b/platforms/bungee/pom.xml similarity index 100% rename from platforms/easysql-plugin-bungee/pom.xml rename to platforms/bungee/pom.xml diff --git a/platforms/easysql-plugin-bungee/src/main/java/cc/carm/plugin/easysql/EasySQLBungee.java b/platforms/bungee/src/main/java/cc/carm/plugin/easysql/EasySQLBungee.java similarity index 100% rename from platforms/easysql-plugin-bungee/src/main/java/cc/carm/plugin/easysql/EasySQLBungee.java rename to platforms/bungee/src/main/java/cc/carm/plugin/easysql/EasySQLBungee.java diff --git a/platforms/easysql-plugin-sponge/pom.xml b/platforms/sponge/pom.xml similarity index 100% rename from platforms/easysql-plugin-sponge/pom.xml rename to platforms/sponge/pom.xml diff --git a/platforms/easysql-plugin-velocity/pom.xml b/platforms/velocity/pom.xml similarity index 100% rename from platforms/easysql-plugin-velocity/pom.xml rename to platforms/velocity/pom.xml diff --git a/platforms/easysql-plugin-velocity/src/main/java/cc/carm/plugin/easysql/EasySQLVelocity.java b/platforms/velocity/src/main/java/cc/carm/plugin/easysql/EasySQLVelocity.java similarity index 100% rename from platforms/easysql-plugin-velocity/src/main/java/cc/carm/plugin/easysql/EasySQLVelocity.java rename to platforms/velocity/src/main/java/cc/carm/plugin/easysql/EasySQLVelocity.java diff --git a/pom.xml b/pom.xml index 561db9c..0efa206 100644 --- a/pom.xml +++ b/pom.xml @@ -26,13 +26,13 @@ pom 0.0.3-SNAPSHOT - easysql-plugin-api - easysql-plugin-core + api + core - platforms/easysql-plugin-bukkit - platforms/easysql-plugin-bungee - platforms/easysql-plugin-velocity - platforms/easysql-plugin-sponge + platforms/bukkit + platforms/bungee + platforms/velocity + platforms/sponge EasySQL-Plugin @@ -103,7 +103,7 @@ org.jetbrains annotations - 22.0.0 + 23.0.0 provided