3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-03 22:18:04 +02:00

Update Sponge repository url

Dieser Commit ist enthalten in:
KennyTV 2021-03-07 12:26:08 +01:00
Ursprung 6cc761e3b2
Commit d7c8f3a594
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B
3 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -49,7 +49,7 @@ subprojects {
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots")
maven("https://nexus.velocitypowered.com/repository/velocity-artifacts-snapshots/")
maven("https://repo.spongepowered.org/maven")
maven("https://repo.spongepowered.org/repository/maven-public/")
maven("https://repo.viaversion.com")
maven("https://libraries.minecraft.net")
maven("https://repo.maven.apache.org/maven2/")

Datei anzeigen

@ -17,8 +17,8 @@ object Versions {
// Platforms
const val spigot = "1.16.5-R0.1-SNAPSHOT"
const val legacyBukkit = "1.8.8-R0.1-SNAPSHOT"
const val bungee = "1.15-SNAPSHOT"
const val sponge = "5.0.0-SNAPSHOT"
const val legacySponge = "4.0.0-SNAPSHOT"
const val velocityApi = "1.1.0-SNAPSHOT"
const val bungee = "1.16-R0.5-SNAPSHOT"
const val sponge = "5.0.0"
const val legacySponge = "4.0.0"
const val velocity = "1.1.0-SNAPSHOT"
}

Datei anzeigen

@ -1,5 +1,5 @@
dependencies {
implementation(project(":viaversion-common"))
compileOnly("com.velocitypowered", "velocity-api", Versions.velocityApi)
annotationProcessor("com.velocitypowered", "velocity-api", Versions.velocityApi)
compileOnly("com.velocitypowered", "velocity-api", Versions.velocity)
annotationProcessor("com.velocitypowered", "velocity-api", Versions.velocity)
}