mirror of
https://github.com/whitechi73/OpenShamrock.git
synced 2024-08-14 13:12:17 +08:00
14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
plugins {
|
|
id("java-library")
|
|
id("org.jetbrains.kotlin.jvm")
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dependencies {
|
|
implementation(DEPENDENCY_PROTOBUF)
|
|
implementation(kotlinx("serialization-protobuf", "1.6.2"))
|
|
} |