From 30e33a4e58d4277af3e3deaa6efc99b4f79e38d3 Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Fri, 8 Feb 2019 19:04:08 -0500 Subject: Updated dependencies. --- .idea/misc.xml | 5 +---- .idea/modules/ModuleLoader.main.iml | 17 ++++++++--------- .idea/modules/ModuleLoader.test.iml | 5 ++--- build.gradle | 11 +++++------ .../redstoner/coremods/moduleLoader/ModuleLoader.java | 2 +- src/main/resources/plugin.yml | 2 +- 6 files changed, 18 insertions(+), 24 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 530d61c..3e68e4d 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,8 +1,5 @@ - - - @@ -26,4 +23,4 @@ - + \ No newline at end of file diff --git a/.idea/modules/ModuleLoader.main.iml b/.idea/modules/ModuleLoader.main.iml index cefd623..50a1428 100644 --- a/.idea/modules/ModuleLoader.main.iml +++ b/.idea/modules/ModuleLoader.main.iml @@ -10,19 +10,18 @@ - - - + + + + + + + + - - - - - - \ No newline at end of file diff --git a/.idea/modules/ModuleLoader.test.iml b/.idea/modules/ModuleLoader.test.iml index 59e0e7d..b9fa95c 100644 --- a/.idea/modules/ModuleLoader.test.iml +++ b/.idea/modules/ModuleLoader.test.iml @@ -8,9 +8,8 @@ - - - + + diff --git a/build.gradle b/build.gradle index bc4ba04..5d62467 100644 --- a/build.gradle +++ b/build.gradle @@ -19,10 +19,9 @@ repositories { } dependencies { - implementation "com.github.RedstonerServer:CommandManager:master-SNAPSHOT" - implementation "com.github.RedstonerServer:ChatAPI:master-SNAPSHOT" - implementation "com.github.RedstonerServer:ChestAPI:master-SNAPSHOT" - + implementation "com.github.RedstonerServer:CommandManager:v1" + implementation "com.github.RedstonerServer:ChatAPI:v1" + compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.11.1' compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT' @@ -30,11 +29,11 @@ dependencies { jar { manifest { - attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar ../lib/ChestAPI.jar" + attributes "Class-Path": "../lib/CommandManager.jar ../lib/ChatAPI.jar" } } task sourceJar(type: Jar, dependsOn: classes) { classifier 'sources' from sourceSets.main.allSource -} +} \ No newline at end of file diff --git a/src/main/java/com/redstoner/coremods/moduleLoader/ModuleLoader.java b/src/main/java/com/redstoner/coremods/moduleLoader/ModuleLoader.java index 0397f59..bdf8091 100644 --- a/src/main/java/com/redstoner/coremods/moduleLoader/ModuleLoader.java +++ b/src/main/java/com/redstoner/coremods/moduleLoader/ModuleLoader.java @@ -36,7 +36,7 @@ import java.util.List; * * @author Pepich */ -@Version (major = 5, minor = 2, revision = 0, compatible = 5) +@Version (major = 5, minor = 2, revision = 1, compatible = 5) public final class ModuleLoader implements CoreModule { private static final HashMap modules = new HashMap<>(); private static ModuleLoader instance; diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 5a3ff61..404bd2b 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,5 +1,5 @@ name: ModuleLoader -version: 4.0.0 +version: 5.2.1 authors: [pepich1851] main: com.redstoner.misc.Main softdepend: [Vault] \ No newline at end of file -- cgit v1.2.3