mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-25 08:11:04 +01:00
26 lines
No EOL
527 B
Text
26 lines
No EOL
527 B
Text
plugins {
|
|
`java-library`
|
|
`maven-publish`
|
|
}
|
|
|
|
java {
|
|
// toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
withSourcesJar()
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching(listOf("plugin.yml")) {
|
|
expand(
|
|
"name" to project.name,
|
|
"version" to project.version,
|
|
"description" to project.description,
|
|
"author" to "xHyroM"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
} |