为什么我使用mvn eclipse后,log4j.zip不在构建路径中:eclipse?

时间:2012-09-20 17:27:04

标签: java-ee maven jar zip maven-3

我在pom.xml中有以下几行

<dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.16</version>
    <type>zip</type>
</dependency>
<dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.16</version>
    <classifier>sources</classifier>
</dependency>

然后我跑

mvn dependency:resolve
mvn eclipse:eclipse

我在.classpath中找不到log4j.zip,为什么?

只有source.jar在.classpath ...

<classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16-sources.jar"/>

2 个答案:

答案 0 :(得分:1)

由于它是一个zip文件,因此它被视为资源文件,而不是编译时依赖项。应该在运行时和测试类路径中存在。

答案 1 :(得分:1)

为什么不删除类型,让maven优雅地处理它?

(仅供参考,在我的项目中,log4j是slf4j的传递dep,包装包)