Update dependencies

This commit is contained in:
games647
2017-09-08 10:53:31 +02:00
parent 7f51659cc7
commit d18b734550
13 changed files with 16 additions and 22 deletions

View File

@ -34,18 +34,12 @@
<url>http://repo.dmulloy2.net/content/groups/public/</url> <url>http://repo.dmulloy2.net/content/groups/public/</url>
</repository> </repository>
<!--AuthMe Reloaded--> <!--AuthMe Reloaded and xAuth -->
<repository> <repository>
<id>xephi-repo</id> <id>xephi-repo</id>
<url>https://ci.xephi.fr/plugin/repository/everything/</url> <url>https://ci.xephi.fr/plugin/repository/everything/</url>
</repository> </repository>
<!--xAuth-->
<repository>
<id>luricos.de-repo</id>
<url>http://repo.luricos.de/bukkit-plugins/</url>
</repository>
<!--Github automatic maven builds--> <!--Github automatic maven builds-->
<repository> <repository>
<id>jitpack.io</id> <id>jitpack.io</id>
@ -71,7 +65,7 @@
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.12-pre2-SNAPSHOT</version> <version>1.12-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View File

@ -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. * 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 * Empty if it's a BungeeCord connection
* *

View File

@ -11,7 +11,7 @@ import org.bukkit.entity.Player;
* *
* Project page: * 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/ * Spigot: https://www.spigotmc.org/resources/authme-reloaded.6269/
*/ */

View File

@ -21,7 +21,7 @@ import org.bukkit.entity.Player;
* *
* Project page: * Project page:
* *
* Bukkit: http://dev.bukkit.org/server-mods/crazylogin/ * Bukkits: http://dev.bukkit.org/server-mods/crazylogin/
*/ */
public class CrazyLoginHook implements AuthPlugin<Player> { public class CrazyLoginHook implements AuthPlugin<Player> {

View File

@ -14,7 +14,7 @@ import org.bukkit.entity.Player;
/** /**
* Github: https://github.com/lenis0012/LoginSecurity-2 Project page: * 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/ * Spigot: https://www.spigotmc.org/resources/loginsecurity.19362/
*/ */
public class LoginSecurityHook implements AuthPlugin<Player> { public class LoginSecurityHook implements AuthPlugin<Player> {

View File

@ -18,7 +18,7 @@ import org.royaldev.royalauth.RoyalAuth;
* *
* Project page: * Project page:
* *
* Bukkit: http://dev.bukkit.org/bukkit-plugins/royalauth/ * Bukkits: http://dev.bukkit.org/bukkit-plugins/royalauth/
*/ */
public class RoyalAuthHook implements AuthPlugin<Player> { public class RoyalAuthHook implements AuthPlugin<Player> {

View File

@ -17,7 +17,7 @@ import org.bukkit.entity.Player;
* *
* Project page: * Project page:
* *
* Bukkit: http://dev.bukkit.org/bukkit-plugins/xauth/ * Bukkit: https://dev.bukkit.org/bukkit-plugins/xauth/
*/ */
public class xAuthHook implements AuthPlugin<Player> { public class xAuthHook implements AuthPlugin<Player> {

View File

@ -91,7 +91,7 @@ public class VerifyResponseTask implements Runnable {
} }
//this makes sure the request from the client is for us //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 generatedId = session.getServerId();
String serverId = EncryptionUtil.getServerIdHashString(generatedId, loginKey, publicKey); String serverId = EncryptionUtil.getServerIdHashString(generatedId, loginKey, publicKey);

View File

@ -25,7 +25,7 @@
<repository> <repository>
<id>vik1395-repo</id> <id>vik1395-repo</id>
<url>http://repo.vik1395.me/repositories</url> <url>https://vik1395.github.io/repositories</url>
</repository> </repository>
</repositories> </repositories>

View File

@ -6,7 +6,7 @@ name: ${project.parent.name}
main: ${project.groupId}.${project.artifactId}.${project.name} main: ${project.groupId}.${project.artifactId}.${project.name}
version: ${project.version}-git${git.commit.id} 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: softDepends:
# BungeeCord auth plugins # BungeeCord auth plugins

View File

@ -19,14 +19,14 @@
<dependency> <dependency>
<groupId>com.zaxxer</groupId> <groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId> <artifactId>HikariCP</artifactId>
<version>2.6.3</version> <version>2.7.1</version>
</dependency> </dependency>
<!--Logging framework implements slf4j which is required by hikari--> <!--Logging framework implements slf4j which is required by hikari-->
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId> <artifactId>slf4j-jdk14</artifactId>
<version>1.7.22</version> <version>1.7.25</version>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -38,7 +38,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.7.0</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@ -48,7 +48,7 @@
<plugin> <plugin>
<groupId>pl.project13.maven</groupId> <groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId> <artifactId>git-commit-id-plugin</artifactId>
<version>2.2.2</version> <version>2.2.3</version>
<configuration> <configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory> <failOnNoGitDirectory>false</failOnNoGitDirectory>
</configuration> </configuration>

View File

@ -22,7 +22,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version> <version>3.1.0</version>
<configuration> <configuration>
<createDependencyReducedPom>false</createDependencyReducedPom> <createDependencyReducedPom>false</createDependencyReducedPom>
<shadedArtifactAttached>false</shadedArtifactAttached> <shadedArtifactAttached>false</shadedArtifactAttached>