18 lines
315 B
Kotlin
18 lines
315 B
Kotlin
|
|
/*
|
||
|
|
* Copyright © 2025 RTAkland
|
||
|
|
* Date: 2025/4/28 22:56
|
||
|
|
* Open Source Under Apache-2.0 License
|
||
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
plugins {
|
||
|
|
kotlin("jvm")
|
||
|
|
}
|
||
|
|
|
||
|
|
publishing {
|
||
|
|
publications {
|
||
|
|
create<MavenPublication>("mavenJava") {
|
||
|
|
from(components["java"])
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|