-
Notifications
You must be signed in to change notification settings - Fork 0
gradle
rawr edited this page Feb 10, 2022
·
2 revisions
There are several DSLs, but for this project I decided to opt for Groovy DSL.
def versionPlatform = "a92ba104e6" // this is the version of the command api you're using - releases can be used, or commit hash.
def platforms = [ // these are all the platforms you want to use. current available platforms are [bukkit, shared, kord]
"shared"
]
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
platforms.forEach {
implementation "com.github.devrawr.commands:${it}:${versionPlatform}"
}
}