Does anyone know how to add custom attributes to t...
# gradle
l
Does anyone know how to add custom attributes to the JAR manifest file? a-la groovy:
Copy code
jar {
    manifest {
      attributes 'Implementation-Title': project.name
    }
  }
e
mb something like this?
Copy code
tasks.withType<Jar> {
    manifest {
        attributes(mapOf(
                "Implementation-Title" to project.name
        ))
    }
}