如何使用JOGL 1.x作为buildr的依赖?

时间:2011-01-31 18:27:49

标签: java jogl buildr

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

1 个答案:

答案 0 :(得分:0)

在Maven存储库上有JOGL吗?如果它不公开,你应该把它上传到你的。

那是通常的:

# 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/*")