Make use of `because` args

This commit is contained in:
NotMyFault 2021-04-03 23:15:40 +02:00
parent 6bc4e5b45c
commit 84d5ebfa41
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
1 changed files with 6 additions and 2 deletions

View File

@ -5,8 +5,12 @@ dependencies {
compileOnlyApi("org.checkerframework:checker-qual:3.9.0")
// Minecraft expectations
compileOnlyApi("com.google.guava:guava:21.0") // Minecraft uses v21.0
compileOnlyApi("com.google.code.gson:gson:2.8.0") // Minecraft uses v2.8.0
compileOnlyApi("com.google.guava:guava:21.0") {
because("Minecraft uses v21.0")
}
compileOnlyApi("com.google.code.gson:gson:2.8.0") {
because("Minecraft uses 2.8.0")
}
// Platform expectations
compileOnlyApi("org.yaml:snakeyaml:1.26") // Some platforms provide this