mirror of
https://github.com/Shiewk/SModeration.git
synced 2026-04-28 05:54:16 +02:00
19 lines
371 B
Groovy
19 lines
371 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
compileOnly "io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT"
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName.set('SModeration-Paper')
|
|
archiveVersion.set(pluginVersion)
|
|
}
|
|
|
|
processResources {
|
|
def props = [version: version]
|
|
inputs.properties props
|
|
filteringCharset 'UTF-8'
|
|
filesMatching('plugin.yml') {
|
|
expand props
|
|
}
|
|
} |