使用Buildr时,如何将JOGL 1.x声明为Java项目的依赖项?
答案 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/*")