如何让 box2d 与 Maven 一起工作?

发布于 2024-11-24 21:35:08 字数 793 浏览 1 评论 0原文

我正在尝试使用 box2d 作为 Maven 的依赖项。
我用谷歌搜索“maven box2d”以接收以下链接:
http://www.box2d.org/forum/viewtopic.php ?f=9&t=3558

它说将以下内容添加到我的 POM

    <dependencies>
    <dependency>
        <groupId>org.jbox2d</groupId>
        <artifactId>jbox2d</artifactId>
        <version>2.0.2-SNAPSHOT</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>tetromi.net</id>
        <url>http://tetromi.net/nexus/content/repositories/snapshots/</url>
    </repository>
</repositories>

这然后在 Eclipse 中给我一个错误,因为它找不到它。
有人能告诉我哪里出了问题吗?谢谢

I am trying to use box2d as a dependancy with Maven.
I have googled "maven box2d" to receive the following link:
http://www.box2d.org/forum/viewtopic.php?f=9&t=3558

It says to add the following to my POM

    <dependencies>
    <dependency>
        <groupId>org.jbox2d</groupId>
        <artifactId>jbox2d</artifactId>
        <version>2.0.2-SNAPSHOT</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>tetromi.net</id>
        <url>http://tetromi.net/nexus/content/repositories/snapshots/</url>
    </repository>
</repositories>

This then gives me an error in eclipse, because it can't find it.
Can someone tell me where I am going wrong? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送你一个梦 2024-12-01 21:35:08

正常存储库是 HS
您可以在此处下载 JBox2D 库

,并将其通过 mvn 放入您自己的存储库中安装:文件命令行

  • 如果你有pom:

    mvn -X install:install-file -Dfile=path/to/mly/jar -DgroupId= -DartifactId= -Dversion= -Dpackaging=jar -DpomFile=path/to/pom.xml

  • 如果你没有 pom :

    mvn -X install:install-file -Dfile=path/to/mly/jar -DgroupId= -DartifactId= -Dversion= -Dpackaging=jar -DgeneratePom=true

Normal the repository is HS
you can download the JBox2D library here

and putting it in your own repository with the mvn install:file command line

  • if you have the pom :

    mvn -X install:install-file -Dfile=path/to/mly/jar -DgroupId= -DartifactId= -Dversion= -Dpackaging=jar -DpomFile=path/to/pom.xml

  • if you have not the pom :

    mvn -X install:install-file -Dfile=path/to/mly/jar -DgroupId= -DartifactId= -Dversion= -Dpackaging=jar -DgeneratePom=true

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文