diff --git a/bukkit/pom.xml b/bukkit/pom.xml index c5fac861..84c5c3c7 100644 --- a/bukkit/pom.xml +++ b/bukkit/pom.xml @@ -34,18 +34,12 @@ http://repo.dmulloy2.net/content/groups/public/ - + xephi-repo https://ci.xephi.fr/plugin/repository/everything/ - - - luricos.de-repo - http://repo.luricos.de/bukkit-plugins/ - - jitpack.io @@ -71,7 +65,7 @@ org.spigotmc spigot-api - 1.12-pre2-SNAPSHOT + 1.12-R0.1-SNAPSHOT provided diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/BukkitLoginSession.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/BukkitLoginSession.java index 0a9ba8bd..b21eddd2 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/BukkitLoginSession.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/BukkitLoginSession.java @@ -41,7 +41,7 @@ public class BukkitLoginSession extends LoginSession { /** * Gets the random generated server id. This makes sure the request sent from the client is just for this server. * - * See this for details http://www.sk89q.com/2011/09/Minecraft-name-spoofing-exploit/ + * See this for details https://www.sk89q.com/2011/09/Minecraft-name-spoofing-exploit/ * * Empty if it's a BungeeCord connection * diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/AuthMeHook.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/AuthMeHook.java index b137a9d2..5fe63889 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/AuthMeHook.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/AuthMeHook.java @@ -11,7 +11,7 @@ import org.bukkit.entity.Player; * * Project page: * - * Bukkit: http://dev.bukkit.org/bukkit-plugins/authme-reloaded/ + * Bukkit: https://dev.bukkit.org/bukkit-plugins/authme-reloaded/ * * Spigot: https://www.spigotmc.org/resources/authme-reloaded.6269/ */ diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/CrazyLoginHook.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/CrazyLoginHook.java index ada11643..0961d3c1 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/CrazyLoginHook.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/CrazyLoginHook.java @@ -21,7 +21,7 @@ import org.bukkit.entity.Player; * * Project page: * - * Bukkit: http://dev.bukkit.org/server-mods/crazylogin/ + * Bukkits: http://dev.bukkit.org/server-mods/crazylogin/ */ public class CrazyLoginHook implements AuthPlugin { diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/LoginSecurityHook.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/LoginSecurityHook.java index 116b4ac9..879732f2 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/LoginSecurityHook.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/LoginSecurityHook.java @@ -14,7 +14,7 @@ import org.bukkit.entity.Player; /** * Github: https://github.com/lenis0012/LoginSecurity-2 Project page: * - * Bukkit: http://dev.bukkit.org/bukkit-plugins/loginsecurity/ + * Bukkit: https://dev.bukkit.org/bukkit-plugins/loginsecurity/ * Spigot: https://www.spigotmc.org/resources/loginsecurity.19362/ */ public class LoginSecurityHook implements AuthPlugin { diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/RoyalAuthHook.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/RoyalAuthHook.java index dccaad22..d56e8151 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/RoyalAuthHook.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/RoyalAuthHook.java @@ -18,7 +18,7 @@ import org.royaldev.royalauth.RoyalAuth; * * Project page: * - * Bukkit: http://dev.bukkit.org/bukkit-plugins/royalauth/ + * Bukkits: http://dev.bukkit.org/bukkit-plugins/royalauth/ */ public class RoyalAuthHook implements AuthPlugin { diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/xAuthHook.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/xAuthHook.java index 9b84c73c..aa00b3c9 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/xAuthHook.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/hooks/xAuthHook.java @@ -17,7 +17,7 @@ import org.bukkit.entity.Player; * * Project page: * - * Bukkit: http://dev.bukkit.org/bukkit-plugins/xauth/ + * Bukkit: https://dev.bukkit.org/bukkit-plugins/xauth/ */ public class xAuthHook implements AuthPlugin { diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/listener/protocollib/VerifyResponseTask.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/listener/protocollib/VerifyResponseTask.java index a584e6aa..6ce003c6 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/listener/protocollib/VerifyResponseTask.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/listener/protocollib/VerifyResponseTask.java @@ -91,7 +91,7 @@ public class VerifyResponseTask implements Runnable { } //this makes sure the request from the client is for us - //this might be relevant http://www.sk89q.com/2011/09/minecraft-name-spoofing-exploit/ + //this might be r https://www.sk89q.com/2011/09/minecraft-name-spoofing-exploit/ String generatedId = session.getServerId(); String serverId = EncryptionUtil.getServerIdHashString(generatedId, loginKey, publicKey); diff --git a/bungee/pom.xml b/bungee/pom.xml index 9463d7f8..3d00e288 100644 --- a/bungee/pom.xml +++ b/bungee/pom.xml @@ -25,7 +25,7 @@ vik1395-repo - http://repo.vik1395.me/repositories + https://vik1395.github.io/repositories diff --git a/bungee/src/main/resources/bungee.yml b/bungee/src/main/resources/bungee.yml index 5a2634e4..fbf8ee5f 100644 --- a/bungee/src/main/resources/bungee.yml +++ b/bungee/src/main/resources/bungee.yml @@ -6,7 +6,7 @@ name: ${project.parent.name} main: ${project.groupId}.${project.artifactId}.${project.name} version: ${project.version}-git${git.commit.id} -author: games647, http://github.com/games647/FastLogin/graphs/contributors +author: games647, https://github.com/games647/FastLogin/graphs/contributors softDepends: # BungeeCord auth plugins diff --git a/core/pom.xml b/core/pom.xml index a79910bf..2b0a9f2f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -19,14 +19,14 @@ com.zaxxer HikariCP - 2.6.3 + 2.7.1 org.slf4j slf4j-jdk14 - 1.7.22 + 1.7.25 diff --git a/pom.xml b/pom.xml index 0078ca0b..a0ea8a3d 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.6.1 + 3.7.0 1.8 1.8 @@ -48,7 +48,7 @@ pl.project13.maven git-commit-id-plugin - 2.2.2 + 2.2.3 false diff --git a/universal/pom.xml b/universal/pom.xml index a7c9b629..d6116498 100644 --- a/universal/pom.xml +++ b/universal/pom.xml @@ -22,7 +22,7 @@ org.apache.maven.plugins maven-shade-plugin - 3.0.0 + 3.1.0 false false