From 3728f2fc7a06d43fb09ee6906d5ff22aa29449eb Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 10 Jan 2022 11:11:31 +0000 Subject: [PATCH] Fixed apache commons lang not existing on classpath --- eco-api/build.gradle | 1 + eco-core/core-plugin/src/main/resources/plugin.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eco-api/build.gradle b/eco-api/build.gradle index 30358831..6cf7e918 100644 --- a/eco-api/build.gradle +++ b/eco-api/build.gradle @@ -15,6 +15,7 @@ dependencies { compileOnly 'org.apache.maven:maven-artifact:3.8.1' compileOnly 'com.comphenix.protocol:ProtocolLib:4.6.1-SNAPSHOT' compileOnly 'com.google.code.gson:gson:2.8.8' + compileOnly 'org.apache.commons:commons-lang3:3.0' } java { diff --git a/eco-core/core-plugin/src/main/resources/plugin.yml b/eco-core/core-plugin/src/main/resources/plugin.yml index fcb00ca9..a39b59c4 100644 --- a/eco-core/core-plugin/src/main/resources/plugin.yml +++ b/eco-core/core-plugin/src/main/resources/plugin.yml @@ -53,4 +53,5 @@ libraries: - 'org.jetbrains.exposed:exposed-jdbc:0.36.2' - 'mysql:mysql-connector-java:8.0.25' - 'com.google.guava:guava:31.0.1-jre' - - 'com.zaxxer:HikariCP:5.0.0' \ No newline at end of file + - 'com.zaxxer:HikariCP:5.0.0' + - 'org.apache.commons:commons-lang3:3.0' \ No newline at end of file