如题,项目是使用maven的一个swing程序,想要打包成jar运行。自己的思路是新建一个artifacts,然后build这个artifacts即可。但是按照这种方式打包之后双击提示:
2 回答
慕妹3242003
TA贡献1824条经验 获得超6个赞
眼眸繁星
TA贡献1873条经验 获得超9个赞
jar {
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/LICENSE'
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
manifest {
attributes "Implementation-Title": "..."
attributes "Implementation-Version": version
attributes "Main-Class": "..."
}
}
使用gradle中的jar任务打包
添加回答
举报
0/150
提交
取消