从maven中拉取gradle依赖jar然后直接运行?

发布于 2024-11-30 10:14:17 字数 51 浏览 1 评论 0原文

gradle 中有没有办法指定依赖项(jar),然后直接在任务中运行该 jarfile?

Is there a way in gradle to specify a dependency (a jar), and then run that jarfile directly within a task?

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

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

发布评论

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

评论(1

凝望流年 2024-12-07 10:14:17

这是一种方法:

configurations {
    tool
}

dependencies {
    tool "some:tool:1.0"
}

task runTool(type: JavaExec) {
    main = "some.tool.Main"
    classpath configurations.tool
}

如果您不知道主类和/或想要执行与 java -jar 相同的操作,则需要采用 http://issues.gradle.org/browse/GRADLE-1274

Here is one way:

configurations {
    tool
}

dependencies {
    tool "some:tool:1.0"
}

task runTool(type: JavaExec) {
    main = "some.tool.Main"
    classpath configurations.tool
}

If you don't know the main class and/or want to do the equivalent of java -jar, you need to employ a workaround as described in http://issues.gradle.org/browse/GRADLE-1274.

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