🧹 Clean up the gradle build scripts a little

Changes:
- Move all dependency versions to a shared file
- Order the projects in settings.gradle
This commit is contained in:
Alexander Söderberg 2020-10-22 04:00:04 +02:00 committed by Alexander Söderberg
parent f3abbf5958
commit d6ccc1d59b
13 changed files with 87 additions and 57 deletions

View file

@ -1,5 +1,5 @@
dependencies {
api project(':cloud-bukkit')
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
compileOnly 'com.destroystokyo.paper:paper-mojangapi:1.15.2-R0.1-SNAPSHOT'
compileOnly "com.destroystokyo.paper:paper-api:${vers['paper-api']}"
compileOnly "com.destroystokyo.paper:paper-mojangapi:${vers['paper-api']}"
}