如何在 ant build 中为该 jar 指定正则表达式?

发布于 2024-12-10 10:14:40 字数 292 浏览 1 评论 0原文

这是 ant 声明 -

 <java jar="${lib.dir}/selenium-server-standalone-2.8.0.jar" fork="true" spawn="true" />

我想做 -

 <java jar="${lib.dir}/selenium-server-*.jar" fork="true" spawn="true" />

因此我不会受到我正在使用的 jar 版本的影响。

Here is the ant statement -

 <java jar="${lib.dir}/selenium-server-standalone-2.8.0.jar" fork="true" spawn="true" />

And I want to do -

 <java jar="${lib.dir}/selenium-server-*.jar" fork="true" spawn="true" />

Hence I am not affected with version of jar I am using.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏末的微笑 2024-12-17 10:14:40

Ant java 任务不支持正则表达式。但是您可以使用 文件集 来“查找”jar:

<fileset dir="${lib.dir}" id="selenium.jar" includes="selenium-server-*.jar" />

然后您可以参考使用 ant.refid: 前缀:

<java jar="${ant.refid:selenium.jar}" fork="true" spawn="true" />

如果你的库目录包含多个版本这个罐子不起作用:你需要决定选择哪一个。
您可以考虑使用像 first 仅选择一个,但我不确定这是否一定会给您正确的一个。

The Ant java task doesn't support regular expressions there. But you can use a fileset to 'find' the jar:

<fileset dir="${lib.dir}" id="selenium.jar" includes="selenium-server-*.jar" />

Then you can refer to the file using the ant.refid: prefix:

<java jar="${ant.refid:selenium.jar}" fork="true" spawn="true" />

If your library directory contains multiple versions of the jar this won't work: you need to decide which one to chose.
You could look into using a resource collection like first to pick just one, but I'm not sure that would necessarily give you the right one.

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