In a script using the Java plugin (apply plugin: ‘java’) I have found in some examples the following instruction :
jar {
manifest {
attributes ‘Implementation-Title’: ‘Gradle Quickstart’,
‘Implementation-Version’: version
} } My general question is : what represent jar ? A method ? An instance of a task ? … Where can I find the specification of jar ? In the DSL, the JavaDoc, GroovyDoc ?
Olivier