我在Intellij Idea中导入了gradle项目(spring boot应用)。用gradle构建时,我用
生成MANIFEST.MFbootJar {
manifest {
attributes 'Implementation-Version': "${version}"
attributes 'Implementation-Title': "${project.name}"
attributes 'Manifest-Version': "1.0"
}
}
但是,在运行和构建Intellij清单文件时,不会生成(输出/生产/类/ META-INF),并且在应用程序getClass().getPackage().getImplementationVersion()
中为空
如何使用Intellij生成清单?