我正在尝试使用box2d作为Maven的依赖
我用google搜索“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中给我一个错误,因为它找不到它。
谁能告诉我哪里出错了?感谢
答案 0 :(得分:0)
正常情况下,存储库是HS 你可以下载JBox2D库here
并使用mvn install:file命令行将其放入您自己的存储库中
mvn -X install:install-file -Dfile = path / to / mly / jar -DgroupId = -DartifactId = -Dversion = -Dpackaging = jar -DpomFile = path / to / pom.xml
mvn -X install:install-file -Dfile = path / to / mly / jar -DgroupId = -DartifactId = -Dversion = -Dpackaging = jar -DgeneratePom = true