如何打包和压缩项目?
如何将jar文件(通过buildr打包)和脚本文件打包成zip文件? jar 文件是根据构建文件创建的:
define "myapp" do
...
package(:jar)
...
end
我尝试了 Zip任务,但没有成功。
How can I package a jar file (packaged via buildr) and script files into a zip file? The jar file is created as per the buildfile:
define "myapp" do
...
package(:jar)
...
end
I tried Zip Task, but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用它:
或者您可以为发行版定义一个子项目,请参阅此示例。
You can use this:
Or you can define a subproject for the distrib, see this example.