在 Buildr 中哪里放置包装脚本?

发布于 2024-11-09 04:36:44 字数 298 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你在看孤独的风景 2024-11-16 04:36:44

正如所评论的,有一些方法可以通过创建一个单独的包来包含脚本和工具来实现这一点。这是一个 示例,它捆绑了一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文