如何让Maven在我的Eclipse Referenced Libraries中包含一个jar?

时间:2011-02-03 20:07:15

标签: eclipse maven

我正在尝试使用现有的Eclipse项目并添加一个pom.xml,以便我可以使用Maven进行自动构建。在项目中,我在Referenced Libraries中有一个不在Maven存储库中的jar文件。为了让Maven识别jar文件,我需要做什么?

我对这个元素进行了一些摸索,没有任何成功。

Windows XP,Eclipse 3.6.1,Maven 3.0.2

2 个答案:

答案 0 :(得分:4)

在你的pom.xml中添加一个<dependencies>标记,并在其中添加所有Jars依赖项。它将在构建时下载。

像这样

<project>
  ...
  <dependencies>
    <dependency>
      <groupId>group-a</groupId>
      <artifactId>artifact-a</artifactId>
      <version>2.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>group-a</groupId>
      <artifactId>artifact-b</artifactId>
      <version>1.0</version>
      <type>jar</type>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
     ....
</project>

点击此处http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html

对于公开的Jars,您可以在此处搜索依赖项http://mvnrepository.com/

对于非公开可用的Jars,您可以通过

在本地安装
 mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

see here

我不确定如何从Eclipse内部安装第三方jar。必须有一些方法使用m2eclipse插件。

答案 1 :(得分:2)

如果您正在使用eclipse indigo,您还可以使用m2e将jar导入您的maven仓库。转到 file / import / maven / install或将工件部署到maven存储库

您只需填写组和工件ID

即可