gildor
tasks { "jar"(Jar::class) { manifest { attributes 'Implementation-Title': project.name } } }
Lex Luthra
"jar"(Jar::class) { manifest { attributes(mutableMapOf( "Implementation-Title" to project.name )) } }
withType(Jar::class.java) { manifest { attributes(mutableMapOf( "Implementation-Title" to project.name )) } }
withType(Jar::class.java)
A modern programming language that makes developers happier.