Java 如何使用jogl1.x作为buildr的依赖项?

Java 如何使用jogl1.x作为buildr的依赖项?,java,jogl,buildr,Java,Jogl,Buildr,在使用Buildr时,如何将jogl1.x声明为Java项目的依赖项?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" ... com

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

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