Skip to content

Commit 44551a0

Browse files
committed
Upgrade dependencies, target 1.6.5 and sponge api 7.3.
1 parent 681372c commit 44551a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+83
-80
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2020 Daniel D. Scalzi
3+
Copyright (c) 2017-2021 Daniel D. Scalzi
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ repositories {
77
mavenCentral()
88
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
99
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
10-
maven { url 'https://repo.codemc.org/repository/maven-public' }
1110
}
1211

1312
dependencies {
14-
compileOnly 'org.spigotmc:spigot-api:1.16.2-R0.1-SNAPSHOT'
13+
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
1514

1615
api project(':SkyChanger-Core')
17-
implementation 'org.bstats:bstats-bukkit:1.7'
16+
implementation 'org.bstats:bstats-bukkit:2.2.1'
1817
}
1918

2019
bukkit {

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/SkyChangerPlugin.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -38,6 +38,7 @@
3838
import com.dscalzi.skychanger.core.internal.util.IWildcardPermissionUtil;
3939
import com.dscalzi.skychanger.core.internal.wrap.IPlugin;
4040
import org.bstats.bukkit.Metrics;
41+
import org.bstats.charts.SimplePie;
4142
import org.bukkit.Bukkit;
4243
import org.bukkit.plugin.java.JavaPlugin;
4344

@@ -66,7 +67,7 @@ public void onEnable() {
6667
MessageManager.initialize(this);
6768
this.getCommand("skychanger").setExecutor(new MainExecutor(this));
6869
metrics = new Metrics(this, 350);
69-
metrics.addCustomChart(new Metrics.SimplePie("used_language",
70+
metrics.addCustomChart(new SimplePie("used_language",
7071
() -> MessageManager.Languages.getByID(ConfigManager.getInstance().getLanguage()).getReadable()));
7172
}
7273

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/api/SkyChanger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/MainExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/ReflectionUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/SkyChangeImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/WildcardPermissionUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/managers/ConfigManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

SkyChanger-Bukkit/src/main/java/com/dscalzi/skychanger/bukkit/internal/wrap/BukkitCommandBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of SkyChanger, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2017-2020 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
4+
* Copyright (c) 2017-2021 Daniel D. Scalzi <https://github.com/dscalzi/SkyChanger>
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)