0

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

4

1 回答 1

0

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/*")
于 2011-06-27T21:06:09.423 回答