Regarding excluding Kotlin runtime from fatJar: Fo...
# kobalt
d
Regarding excluding Kotlin runtime from fatJar: Found out that Kobalt already supports excluding files from Jars. There is an undocumented exclude() function...
Copy code
jar {
	fatJar = true

	exclude("**/kotlin-stdlib-*.jar")
	exclude("**/kotlin-runtime-*.jar")
}