如何在不干扰版本控制的情况下将外部jar添加到eclipse项目中

时间:2013-01-12 13:12:54

标签: android eclipse git version-control

我需要将roottools添加到我的android项目中,我要做的就是将jar添加到我的git repo中,并将jar添加到我提到的eclipse构建配置here 。问题是,第二步不会导致回购中的任何变化。更改仅在.classpath文件中,每个人都建议添加到gitignore。所以问题是,如何将roottools.jar is included in the build path的信息添加到我的git repo?

1 个答案:

答案 0 :(得分:0)

使用不依赖于IDE的构建工具(如Maven)。然后检查构建脚本(在Maven的情况下为pom.xml)到git。

然后你仍然可以使用Eclipse,因为它支持Maven。

以下是有关如何使用Maven设置Android项目的信息:http://code.google.com/p/maven-android-plugin/wiki/GettingStarted