我在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"/>
答案 0 :(得分:1)
由于它是一个zip文件,因此它被视为资源文件,而不是编译时依赖项。应该在运行时和测试类路径中存在。
答案 1 :(得分:1)
为什么不删除类型,让maven优雅地处理它?
(仅供参考,在我的项目中,log4j是slf4j的传递dep,包装包)