-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
43 lines (37 loc) · 1.18 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.time.LocalDateTime
plugins {
java
alias(libs.plugins.kotlin.jvm) apply false
}
subprojects {
group = property("project.group").toString()
version = property("project.version").toString()
with(pluginManager) {
apply<JavaPlugin>()
apply(rootProject.libs.plugins.kotlin.jvm.get().pluginId)
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<KotlinCompile> {
compilerOptions {
freeCompilerArgs.add("-Xjsr305=strict")
freeCompilerArgs.add("-Xcontext-receivers")
jvmTarget.set(JvmTarget.JVM_17)
}
}
val developerName = property("project.developer.name")
tasks.withType<Jar> {
manifest {
attributes(
"Implementation-Title" to rootProject.name,
"Implementation-Version" to project.version,
"Implementation-Vendor" to developerName,
"Implementation-Timestamp" to LocalDateTime.now()
)
}
}
}