Update Upstream

eb7b79c Use require instead of strictly to reduce problems with mojang/bukkit updates (1787)
Dieser Commit ist enthalten in:
NotMyFault 2021-06-17 10:44:19 +02:00
Ursprung 0af60e5680
Commit 79e8755d93
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C

Datei anzeigen

@ -64,15 +64,15 @@ fun Project.applyCommonConfiguration() {
continue
}
add(conf.name, "com.google.guava:guava") {
version { strictly(Versions.GUAVA) }
version { require(Versions.GUAVA) }
because("Mojang provides Guava")
}
add(conf.name, "com.google.code.gson:gson") {
version { strictly(Versions.GSON) }
version { require(Versions.GSON) }
because("Mojang provides Gson")
}
add(conf.name, "it.unimi.dsi:fastutil") {
version { strictly(Versions.FAST_UTIL) }
version { require(Versions.FAST_UTIL) }
because("Mojang provides FastUtil")
}
}