mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-25 16:11:05 +01:00
26 lines
524 B
Text
26 lines
524 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()
|
||
|
}
|
||
|
}
|