Merge branch 'base'

This commit is contained in:
Blue (Lukas Rieger) 2020-08-21 11:42:18 +02:00
commit af938c8f14
5 changed files with 11 additions and 8 deletions

View File

@ -11,7 +11,7 @@ repositories {
dependencies {
shadow "org.spigotmc:spigot-api:1.16.2-R0.1-SNAPSHOT"
compile group: 'org.bstats', name: 'bstats-bukkit-lite', version: '1.7'
compile group: 'org.bstats', name: 'bstats-bukkit-lite', version: '1.5'
compile (project(':BlueMapCommon')) {
//exclude dependencies provided by bukkit

View File

@ -85,7 +85,6 @@ public class BukkitPlugin extends JavaPlugin implements ServerInterface, Listene
@Override
public void onEnable() {
new MetricsLite(this, 5912);
//save world so the level.dat is present on new worlds
Logger.global.logInfo("Saving all worlds once, to make sure the level.dat is present...");
@ -137,6 +136,9 @@ public class BukkitPlugin extends JavaPlugin implements ServerInterface, Listene
this.pluginInstance.unload();
}
});
//init bstats
new MetricsLite(this);
}
@Override

View File

@ -1,7 +1,7 @@
dependencies {
shadow "org.spongepowered:spongeapi:7.2.0"
compile group: 'org.bstats', name: 'bstats-sponge-lite', version: '1.7'
compile group: 'org.bstats', name: 'bstats-sponge-lite', version: '1.5'
compile (project(':BlueMapCommon')) {
//exclude dependencies provided by sponge

View File

@ -75,6 +75,10 @@ public class SpongePlugin implements ServerInterface {
@ConfigDir(sharedRoot = false)
private Path configurationDir;
@Inject
@SuppressWarnings("unused")
private MetricsLite2 metrics;
private Plugin pluginInstance;
private SpongeCommands commands;
@ -85,7 +89,7 @@ public class SpongePlugin implements ServerInterface {
private List<SpongePlayer> onlinePlayerList;
@Inject
public SpongePlugin(org.slf4j.Logger logger, MetricsLite2.Factory bstatsFactory) {
public SpongePlugin(org.slf4j.Logger logger) {
Logger.global = new Slf4jLogger(logger);
this.onlinePlayerMap = new ConcurrentHashMap<>();
@ -93,9 +97,6 @@ public class SpongePlugin implements ServerInterface {
this.pluginInstance = new Plugin("sponge", this);
this.commands = new SpongeCommands(pluginInstance);
//init bstats metrics
bstatsFactory.make(5911);
}
@Listener

View File

@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
coreVersion=0.10.2
coreVersion=0.10.3
targetVersion=mc1.16