与 Gradle 一起构建一个超级容器
我想构建一个包含项目所有传递依赖项的 uberjar(AKA fatjar)。我需要添加哪些行?build.gradle
这是我目前拥有的:
task uberjar(type: Jar) {
from files(sourceSets.main.output.classesDir)
manifest {
attributes 'Implementation-Title': 'Foobar',
'Implementation-Version': version,
'Built-By': System.getProperty('user.name'),
'Built-Date': new Date(),
'Built-JDK': System.getProperty('java.version'),
'Main-Class': mainClassName
}
}