配置 Gradle 项目依赖 lwjgl
如何配置 build.gradle
以依赖 LWJGL?
我是 Gradle 新手,如何配置库依赖项对我来说一目了然。
我的理解是,人们可以指定 Gradle 下载的库依赖项,而不是将它们签入源代码管理,但任何形式的配置帮助都将不胜感激。
(我不认识 Ivy 或 Maven。)
How do I configure build.gradle
to depend on LWJGL?
I'm new to Gradle, and how to configure library dependencies is clear as mud to me.
It's my understanding is that one can specify library dependencies for Gradle to download rather than checking them in to source control, but any sort of help with configuring things would be appreciated.
(I don't know any Ivy or Maven.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您想要的是在构建类路径中包含 lwjgl 并自动解析它,对吗?
尝试这个代码片段:
上面的代码片段定义了一个 Maven 存储库,其中包含 lwjgl 库并定义了项目的两个编译依赖项。
问候,
勒内
I think what you want is to have lwjgl in your build classpath and resolve it automatically right?
try this snippet:
This snippet above defines a maven repository which contains the lwjgl libs and defines two compile dependencies to your project.
regards,
René