diff --git a/build.gradle.kts b/build.gradle.kts index 473095a..867591b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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) }