mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
19b4da07b9
Adds run-paper plugin support as well as moves majority of logic to kotlin build scrips Co-authored-by: Josh Roy <10731363+JRoy@users.noreply.github.com>
15 lines
322 B
Plaintext
15 lines
322 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
`groovy-gradle-plugin`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.kyori", "indra-common", "2.0.5")
|
|
implementation("gradle.plugin.com.github.jengelman.gradle.plugins", "shadow", "7.0.0")
|
|
implementation("xyz.jpenilla", "run-paper", "1.0.2")
|
|
}
|