Lex Luthra
05/23/2018, 7:22 AMjar {
manifest {
attributes 'Implementation-Title': project.name
}
}
Evgeniy Zaharov
05/23/2018, 7:43 AMtasks.withType<Jar> {
manifest {
attributes(mapOf(
"Implementation-Title" to project.name
))
}
}