diff --git a/build.gradle b/build.gradle index e79ca270c..b85227a7f 100644 --- a/build.gradle +++ b/build.gradle @@ -69,61 +69,10 @@ processResources { } /** - * For performance during compilation, we specify which module groups are accessible from which repositories - * This may cause issues resolving new dependencies but normally it shouldn't. + * Unified repo */ repositories { - maven { - url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' - content { - includeGroup 'org.spigotmc' - } - } - maven { - url 'https://papermc.io/repo/repository/maven-public/' - content { - includeGroup 'io.papermc' - } - } - maven { - url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' - content { - includeGroup 'me.clip' - } - } - maven { - url 'https://oss.sonatype.org/content/repositories/snapshots/' - content { - includeGroup 'net.kyori' - } - } - maven { - url 'https://repo.jeff-media.de/maven2' - content { - includeGroup 'de.jeff_media' - } - } - maven { url 'https://jitpack.io' } - maven { - url 'https://repo.codemc.io/repository/maven-releases' - content { - includeGroup 'com.dfsek' - } - } - mavenCentral() - mavenLocal() - maven { - allowInsecureProtocol true - url 'http://archive.arcane.art/repository/arcane' - content { - includeGroup 'org.bukkit.craftbukkit' - includeGroup 'io.th0rgal' - } - } - - // Uncomment this line if the build is failing because of missing dependencies - // Its slow but it will resolve any cached dependencies until we can find an alternative repo - // maven { allowInsecureProtocol true, url 'http://archive.arcane.art/repository/arcane'} + maven { url "https://dl.cloudsmith.io/public/arcane/archive/maven/" } } /** diff --git a/src/main/java/com/volmit/iris/core/IrisSettings.java b/src/main/java/com/volmit/iris/core/IrisSettings.java index 68d77cf69..4d8f4ceb0 100644 --- a/src/main/java/com/volmit/iris/core/IrisSettings.java +++ b/src/main/java/com/volmit/iris/core/IrisSettings.java @@ -83,7 +83,7 @@ public class IrisSettings { @Data public static class IrisSettingsPerformance { public boolean trimMantleInStudio = false; - public int mantleKeepAlive = 60; + public int mantleKeepAlive = 30; public int cacheSize = 4_096; public int resourceLoaderCacheSize = 1_024; public int objectLoaderCacheSize = 4_096;