Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 00:00:41 +01:00
Address @Camotoy's review
Dieser Commit ist enthalten in:
Ursprung
1b5f237996
Commit
0335c8263c
@ -1,6 +1,6 @@
|
|||||||
val paperVersion = "1.19-R0.1-SNAPSHOT"
|
val paperVersion = "1.19-R0.1-SNAPSHOT"
|
||||||
val viaVersion = "4.0.0"
|
val viaVersion = "4.0.0"
|
||||||
val adaptersVersion = "1.4-SNAPSHOT"
|
val adaptersVersion = "1.5-SNAPSHOT"
|
||||||
val commodoreVersion = "1.13"
|
val commodoreVersion = "1.13"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -31,6 +31,8 @@ object Versions {
|
|||||||
const val nbtVersion = "2.1.0"
|
const val nbtVersion = "2.1.0"
|
||||||
const val websocketVersion = "1.5.1"
|
const val websocketVersion = "1.5.1"
|
||||||
const val protocolVersion = "a78a64b"
|
const val protocolVersion = "a78a64b"
|
||||||
|
// Not pinned to specific version due to possible gradle bug
|
||||||
|
// See comment in settings.gradle.kts
|
||||||
const val raknetVersion = "1.6.28-SNAPSHOT"
|
const val raknetVersion = "1.6.28-SNAPSHOT"
|
||||||
const val mcauthlibVersion = "d9d773e"
|
const val mcauthlibVersion = "d9d773e"
|
||||||
const val mcprotocollibversion = "54fc9f0"
|
const val mcprotocollibversion = "54fc9f0"
|
||||||
|
@ -8,7 +8,12 @@ dependencyResolutionManagement {
|
|||||||
mavenContent { releasesOnly() }
|
mavenContent { releasesOnly() }
|
||||||
}
|
}
|
||||||
maven("https://repo.opencollab.dev/maven-snapshots") {
|
maven("https://repo.opencollab.dev/maven-snapshots") {
|
||||||
mavenContent { snapshotsOnly() }
|
mavenContent {
|
||||||
|
// This has the unintended side effect of not allowing snapshot version pinning.
|
||||||
|
// Likely a bug in Gradle's implementation of snapshot pinning
|
||||||
|
// See https://github.com/gradle/gradle/pull/406
|
||||||
|
snapshotsOnly()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Paper, Velocity
|
// Paper, Velocity
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren