mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 18:45:21 +01:00
Downgrade bStats again due to version-conflicts
This commit is contained in:
parent
32e25011a0
commit
b532dc7f40
@ -11,7 +11,7 @@ repositories {
|
||||
dependencies {
|
||||
shadow "org.bukkit:bukkit:1.13.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
|
||||
|
@ -85,7 +85,6 @@ public BukkitPlugin() {
|
||||
|
||||
@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 void onEnable() {
|
||||
this.pluginInstance.unload();
|
||||
}
|
||||
});
|
||||
|
||||
//init bstats
|
||||
new MetricsLite(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -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
|
||||
|
@ -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 SpongePlugin(org.slf4j.Logger logger, MetricsLite2.Factory bstatsFactory)
|
||||
|
||||
this.pluginInstance = new Plugin("sponge", this);
|
||||
this.commands = new SpongeCommands(pluginInstance);
|
||||
|
||||
//init bstats metrics
|
||||
bstatsFactory.make(5911);
|
||||
}
|
||||
|
||||
@Listener
|
||||
|
Loading…
Reference in New Issue
Block a user