Hallo,
ich schreibe gerade für einen Freund von mir der auf Twitch streamt ein Plugin für seinen Minecraft-Server, dass ihm anzeigt wenn jemand seinem Stream folgt(er hat derzeit nur einen Bildschirm).
Die Anwendung funktioniert als reiner Java-Code in der Konsole ausgegeben super, allerdings bekomme ich in Minecraft kein Ergebnis.
Ich habe eine Jar-Datei inkl. der Maven-Dependencies gepackt, allerdings habe ich das Gefühl dass genau da der Fehler liegt.
Beim StartUp kommt folgende Error-Meldung:
[00:07:38] [Server thread/INFO]: [FollowerEvents] Enabling FollowerEvents v1.0
[00:07:38] [Server thread/WARN]: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[00:07:38] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[00:07:38] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[00:07:39] [Server thread/INFO]: java.lang.ExceptionInInitializerError
Ich share hier drunter einfach mal den ganzen Code,
ist wie gesagt erstmal nichts besonderes deshalb ist mir das ziemlich egal, habe nicht vor das zu veröffentlichen...
import com.github.twitch4j.TwitchClient;
import com.github.twitch4j.TwitchClientBuilder;
import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
public final class FollowerEvents extends JavaPlugin {
@Override
public void onEnable() {
Bukkit.getServer().broadcastMessage("Geladen!");
try{
TwitchClient twitchClient = TwitchClientBuilder.builder()
.withEnableHelix(true)
.build();
twitchClient.getClientHelper().enableFollowEventListener("classybeef");
FollowNotification followNotification = new FollowNotification(twitchClient.getEventManager());
}
catch(ExceptionInInitializerError e){
System.out.println(e);
}
}
@Override
public void onDisable() {
// Plugin shutdown logic
}
}
Alles anzeigen
import com.github.philippheuer.events4j.EventManager;
import com.github.twitch4j.chat.events.channel.FollowEvent;
import org.bukkit.Bukkit;
import reactor.core.Disposable;
import java.util.function.Consumer;
public class FollowNotification {
public FollowNotification(EventManager eventManager) {
final Disposable subscribe = eventManager.onEvent(FollowEvent.class).subscribe(new Consumer<FollowEvent>() {
public void accept(FollowEvent event) {
FollowNotification.this.onFollow(event);
}
});
}
public void onFollow(FollowEvent event){
String followerName = event.getUser().getName();
Bukkit.getServer().broadcastMessage(followerName + " folgt jetzt!");
}
}
Alles anzeigen
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>JulianAlker</groupId>
<artifactId>FollowerEvents</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>FollowerEvents</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
<repository>
<id>jcenter-snapshot</id>
<url>https://oss.jfrog.org/artifactory/libs-release/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.twitch4j</groupId>
<artifactId>twitch4j</artifactId>
<version>1.0.0-alpha.17</version>
</dependency>
</dependencies>
</project>
Alles anzeigen
Die Warnings in der Log bekomme ich auch beim Java-Projekt, die tun der Funktionalität der Konsolenanwendung aber keinen Abbruch, sie funktioniert trotzdem.
Ich entwickle das erste mal ein Minecraft-Plugin, kann mir da jemand helfen?
Grüße
DasBrot