如何将 andengine 与 Maven 一起使用?
我使用下载了源代码
hg clone https://code.google.com/p/andengine/ andengine
,我想知道下一步是将 andengine 与 Maven 一起使用。
I downloaded the source using
hg clone https://code.google.com/p/andengine/ andengine
And I'd like to know what the next step is to use andengine with maven.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该首先构建 andengine 以创建一个 jar 文件以用作项目中的依赖项。看来 andengine 正在使用 ant 来构建项目,所以应该可以工作。
(你也可以将andengine放在它自己的maven模块中,使用maven中的ant mojos来执行构建并将jar放入本地存储库中。但是会有新版本,这可能会变成迁移工作,我会拆分这个任务进入 andegine 和你的项目)。
从那里,您可以在项目中使用上面选择的 groupId/artifactId(如果没有存储库代理,则将 .jar 存储在本地存储库中)。
You should build the andengine first to create a jar file to be used as a dependency in your project. It seems andengine is using ant to build the project so that should work.
(You could also put andengine in its own maven module, use the ant mojos from maven to execute the build and put the jar in the local repository. But there will be new version and that may turn into migration work, I would split this task into andegnine and your project).
From there you can use the groupId/artifactId you chose above (to store the .jar in your local repo if there is no repository proxy in place) in your project.
您从错误的地方获取 AndEngine,该项目现在位于 GitHub 上: https://github.com/nicolasgramlich/AndEngine
Google 代码存储库现在可能非常陈旧且存在缺陷!
从 GitHub 获取它时,请参阅 此线程。
You are getting AndEngine from the wrong place, the project now lives on GitHub: https://github.com/nicolasgramlich/AndEngine
The Google Code repository is now probably very old and buggy!
On getting it from GitHub, see this thread.