在 Buildr 中哪里放置包装脚本?
我正在 Scala 中开发一组命令行工具,使用 Apache Buildr 作为我的构建系统。我想为每个工具包含一个包装脚本。像这样的事情:
#!/bin/sh
scala myclass $@
当我输入 buildr install
时,这些脚本应该与我的 jar 一起安装。是否有一个特殊的目录 Buildr 可以识别这样的包装脚本?如果没有,我怎样才能让Buildr安装脚本?我尝试将脚本放入 src/main/resources 中,但这将它们打包在 jar 中,这不是我想要的。
I'm developing a set of command line tools in Scala, using Apache Buildr as my build system. I'd like to include a wrapper script for each tool. Something like this:
#!/bin/sh
scala myclass $@
These scripts should be installed alongside my jar when I type buildr install
. Is there a special directory Buildr recognizes for wrapper scripts like this? If not, how can I make Buildr install the scripts? I've tried putting the scripts in src/main/resources, but this packages them inside the jar, which is not what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如所评论的,有一些方法可以通过创建一个单独的包来包含脚本和工具来实现这一点。这是一个 示例,它捆绑了一个 jar 和一组运行该 jar 的脚本带参数。
As commented, there are ways to make this happen by creating a separate packaging to encompass the scripts and the tool. Here is an example that bundles a jar and a set of scripts to run the jar with parameters.