如何通过URL ...使用.classpath添加外部jar ...

时间:2010-04-16 07:06:32

标签: eclipse

**在eclipse中的任何javaProject中,我们总是得到.classpath文件......比如

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry path="ABC/junit" kind="src"/>
    <classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"/>
    <classpathentry path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4" kind="con"/>
    <classpathentry path="targets" kind="output"/>
</classpath>

这里当我们导入任何外部jar时,它会在classpathentry中给出该jar的路径...我希望classpathentry应该来自任何URL 这将提供外部jar ...任何人都可以告诉我该怎么做...实际上我想从URL(任何)自动添加外部jar 当用户将在eclipse中导入该项目时,我不希望用户手动添加外部jar ...我想相应地更改.classpath。或者任何其他方式自动执行此操作。请帮帮我...等待回复。**

1 个答案:

答案 0 :(得分:1)

添加依赖关系的方式可以通过 maven 更好地管理,m2eclipse

在配置Eclipse Build Path to use Maven dependencies时,您将实现所需:来自外部(maven repo)URL的每个外部jar都将被下载并由Eclipse构建路径考虑。

您甚至可以search for dependencies在项目中使用的任何课程。