Skip to content
This repository has been archived by the owner on Mar 21, 2019. It is now read-only.

Commit

Permalink
Update import, update libs and remove unneeded lib
Browse files Browse the repository at this point in the history
SLF4J-over-Log4j2 is not needed anymore as of
PaperMC/Paper#890
  • Loading branch information
mikroskeem committed Sep 23, 2017
1 parent 3b913a0 commit 9a314b1
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/main/java/eu/mikroskeem/helios/mod/HeliosMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import org.apache.logging.log4j.Logger;
import org.bukkit.Bukkit;
import org.bukkit.Server;
import org.spongepowered.asm.util.launchwrapper.LaunchClassLoaderUtil;
import org.spongepowered.asm.service.mojang.LaunchClassLoaderUtil;

import javax.inject.Inject;

Expand Down Expand Up @@ -81,17 +81,13 @@ public void on(ModConstructEvent e) throws Exception {

logger.info("Setting up libraries");
/* ** Register Kotlin library */
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib:1.1.4-3");
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.4-3");
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.4-3");
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib:1.1.50");
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.50");
orion.registerLibrary("org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.50");
orion.registerLibrary("com.fasterxml.jackson.core:jackson-core:2.8.9");

/* ** Add slf4j-over-log4j */
orion.registerLibrary("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1");

/* ** Sentry */
orion.registerLibrary("io.sentry:sentry:1.3.0");
orion.registerLibrary("org.slf4j:slf4j-api:1.7.25");
orion.registerLibrary("io.sentry:sentry:1.5.3");

/* Register AT */
logger.info("Setting up ATs...");
Expand Down

0 comments on commit 9a314b1

Please sign in to comment.