如何使用 JOGL 1.x 作为构建器的依赖项?

发布于 2024-10-14 21:58:52 字数 47 浏览 5 评论 0原文

使用 Buildr 时如何将 JOGL 1.x 声明为 Java 项目的依赖项?

How can I declare JOGL 1.x as a dependency of my Java project when using Buildr?

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

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

发布评论

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

评论(1

一场信仰旅途 2024-10-21 21:58:52

JOGL 是否位于 Maven 存储库上?如果它不公开,您应该将其上传到您的。

然后就是通常的情况:

# Example of artifact definition, granted that JOGL's group id jogl, 
# and the artifact id is jogl.
#
# I put up 1.0 as version too. 
JOGL = "jogl:jogl:jar:1.0"

...
compile.using JOGL

您也可以在本地安装 JOGL 并指向它:

compile.using _("lib/*")

Is JOGL on a Maven repository ? You should upload it to yours if it's not publicly available.

Then it's the usual:

# Example of artifact definition, granted that JOGL's group id jogl, 
# and the artifact id is jogl.
#
# I put up 1.0 as version too. 
JOGL = "jogl:jogl:jar:1.0"

...
compile.using JOGL

You can also install JOGL locally and point to it:

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