diff --git a/pom.xml b/pom.xml
index e725c0d7..31537789 100644
--- a/pom.xml
+++ b/pom.xml
@@ -330,7 +330,7 @@
onarandombox
- https://repo.onarandombox.com/content/groups/public
+ http://repo.onarandombox.com/content/groups/public
@@ -612,7 +612,7 @@
com.onarandombox.multiversecore
Multiverse-Core
- 2.5
+ 2.5.0-SNAPSHOT
jar
provided
diff --git a/src/test/java/fr/xephi/authme/initialization/ConstructorInjectionTest.java b/src/test/java/fr/xephi/authme/initialization/ConstructorInjectionTest.java
index c53a4321..cc55b4c3 100644
--- a/src/test/java/fr/xephi/authme/initialization/ConstructorInjectionTest.java
+++ b/src/test/java/fr/xephi/authme/initialization/ConstructorInjectionTest.java
@@ -21,6 +21,7 @@ import static org.junit.Assert.assertThat;
*/
public class ConstructorInjectionTest {
+ @SuppressWarnings("unchecked")
@Test
public void shouldReturnDependencies() {
// given
diff --git a/src/test/java/fr/xephi/authme/initialization/FieldInjectionTest.java b/src/test/java/fr/xephi/authme/initialization/FieldInjectionTest.java
index 9b25565e..b784e4da 100644
--- a/src/test/java/fr/xephi/authme/initialization/FieldInjectionTest.java
+++ b/src/test/java/fr/xephi/authme/initialization/FieldInjectionTest.java
@@ -127,7 +127,5 @@ public class FieldInjectionTest {
private static class NoInjectionClass {
- private BetaManager betaManager;
-
}
}
diff --git a/src/test/java/fr/xephi/authme/settings/ConfigFileConsistencyTest.java b/src/test/java/fr/xephi/authme/settings/ConfigFileConsistencyTest.java
index 8d1c7b4e..1ce7ec41 100644
--- a/src/test/java/fr/xephi/authme/settings/ConfigFileConsistencyTest.java
+++ b/src/test/java/fr/xephi/authme/settings/ConfigFileConsistencyTest.java
@@ -88,7 +88,7 @@ public class ConfigFileConsistencyTest {
// when / then
for (Property> property : propertyMap.keySet()) {
assertThat("Default value of '" + property.getPath() + "' in config.yml should be the same as in Property",
- property.getFromFile(configuration), equalTo(property.getDefaultValue()));
+ property.getFromFile(configuration).equals(property.getDefaultValue()), equalTo(true));
}
}