// Copy LICENSE
tasks.withType(Jar) {
from(project.rootDir) {
include ‘LICENSE’
into ‘META-INF’
}
}
// 生成jar文件时,MANIFEST.MF的内容如下
jar {
manifest {
attributes(
‘Created-By’: “ S y s t e m . p r o p e r t i e s [ ′ j a v a . v e r s i o n ′ ] ( {System.properties['java.version']} ( System.properties[′java.version′]({System.properties[‘java.vendor’]} ${System.properties[‘java.vm.version’]})”.toString(),
‘Built-By’: ‘travis’,
‘Build-Date’: buildDate,
‘Build-Time’: buildTime,
‘Built-OS’: “${System.properties[‘os.name’]}”,
‘Specification-Title’: p