Adding extra info

This commit is contained in:
Julien Lengrand-Lambert
2025-05-15 14:45:54 +02:00
parent c76fc26cef
commit f39261916c

View File

@@ -15,10 +15,22 @@ dependencies {
testImplementation(kotlin("test"))
}
java {
withSourcesJar()
}
tasks.test {
useJUnitPlatform()
}
tasks.jar {
manifest {
attributes(mapOf("Implementation-Title" to project.name,
"Implementation-Version" to project.version))
}
}
kotlin {
jvmToolchain(23)
}