1

我将此依赖项添加到我的 pom.xml 中。当我构建项目时,如果创建此错误。

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-sandbox-parent</artifactId>
  <version>10</version>
</dependency>

无法在项目核心上执行目标:无法解析项目 com.name:core:jar:0.0.1-SNAPSHOT 的依赖项:在中央找不到工件 org.apache.commons:commons-sandbox-parent:jar:10 ( http://repo1.maven.org/maven2 ) -> [帮助 1]

当我点击这个链接到中央仓库时,我注意到文件夹中没有预编译的 jar 文件。构建过程抱怨没有 jar。我使用的所有其他依赖项中都有预编译的 jar 文件。我该如何解决这个问题并编译我的项目?

http://central.maven.org/maven2/org/apache/commons/commons-sandbox-parent/10/

4

1 回答 1

4

此依赖项是“pom”类型,而不是“jar”类型。它在http://central.maven.org/maven2/org/apache/commons/commons-sandbox-parent/10/commons-sandbox-parent-10.pom的 pom 文件中的“打包”标签中提到。

如果在声明依赖项时未指定类型,则假定它是“jar”。您可以指定类型“pom”。

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-sandbox-parent</artifactId>
  <version>10</version>
  <type>pom</type>
</dependency>
于 2013-09-07T00:13:15.737 回答