From cff4cce4dc3d3f80650d291fea8a41a638962963 Mon Sep 17 00:00:00 2001 From: Euphyllia Bierque Date: Fri, 13 Sep 2024 16:03:15 +0200 Subject: [PATCH 1/3] Fix conflict between library versions because it was not redirected Also, reduced the total weight of the jar, by putting the libraries in plugin.yml --- .idea/.gitignore | 3 +++ .idea/compiler.xml | 13 ++++++++++++ .idea/encodings.xml | 7 ++++++ .idea/jarRepositories.xml | 40 +++++++++++++++++++++++++++++++++++ .idea/misc.xml | 16 ++++++++++++++ .idea/modules.xml | 8 +++++++ .idea/vcs.xml | 6 ++++++ FreeMinecraftModels.iml | 13 ++++++++++++ pom.xml | 12 ++++++++--- src/main/resources/plugin.yml | 5 +++++ 10 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 FreeMinecraftModels.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..d81eb95 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..53e18a5 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d6966b9 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8648016 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/FreeMinecraftModels.iml b/FreeMinecraftModels.iml new file mode 100644 index 0000000..a589521 --- /dev/null +++ b/FreeMinecraftModels.iml @@ -0,0 +1,13 @@ + + + + + + + SPIGOT + + 1 + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 2aff3c6..1e44690 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,8 @@ com.google.code.gson gson - 2.9.0 + 2.11.0 + provided @@ -72,7 +73,8 @@ commons-io commons-io - 2.13.0 + 2.16.1 + provided @@ -80,7 +82,7 @@ org.bstats bstats-bukkit 3.0.2 - compile + provided @@ -135,6 +137,10 @@ org.bstats com.magmaguy.freeminecraftmodels + + com.magmaguy.MagmaCore + com.magmaguy.freeminecraftmodels.MagmaCore + diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index b5c7345..6b15cc6 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -8,6 +8,11 @@ authors: [ MagmaGuy ] description: Welcome to the new age of custom Minecraft models. website: magmaguy.com +libraries: + - commons-io:commons-io:2.16.1 + - org.bstats:bstats-bukkit:3.0.3 + - com.google.code.gson:gson:2.11.0 + commands: freeminecraftmodels: aliases: From 3117a50815e2eff21d3dcf86399cd4872a8c9c5b Mon Sep 17 00:00:00 2001 From: Euphyllia Bierque Date: Fri, 13 Sep 2024 16:03:49 +0200 Subject: [PATCH 2/3] remove .idea --- .idea/.gitignore | 3 --- .idea/compiler.xml | 13 ------------- .idea/encodings.xml | 7 ------- .idea/jarRepositories.xml | 40 --------------------------------------- .idea/misc.xml | 16 ---------------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ 7 files changed, 93 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/encodings.xml delete mode 100644 .idea/jarRepositories.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 26d3352..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index d81eb95..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index aa00ffa..0000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index 53e18a5..0000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index d6966b9..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 8648016..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From e4ec1051e64d68468093589acb2a522e670a830f Mon Sep 17 00:00:00 2001 From: Euphyllia Bierque Date: Fri, 13 Sep 2024 16:04:50 +0200 Subject: [PATCH 3/3] remove .iml --- FreeMinecraftModels.iml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 FreeMinecraftModels.iml diff --git a/FreeMinecraftModels.iml b/FreeMinecraftModels.iml deleted file mode 100644 index a589521..0000000 --- a/FreeMinecraftModels.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - SPIGOT - - 1 - - - - \ No newline at end of file