16 lines
235 B
Kotlin
16 lines
235 B
Kotlin
plugins {
|
|
id("common");
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17;
|
|
targetCompatibility = JavaVersion.VERSION_17;
|
|
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17);
|
|
}
|
|
|
|
withJavadocJar();
|
|
withSourcesJar();
|
|
}
|