フォークしているプロジェクトの pom.xml を構築しようとしています。元のプロジェクトは私が使用できない pom 階層を使用しているため、新しい pom.xml を作成する必要があります。
今、迷惑なパッケージ xxx が存在しません。
<dependencyManagement>
<dependencies>
...
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
...
<dependencies>
<dependencyManagement>
明らかに、Maven は次のようなインポートで失敗しています。
import org.apache.commons.logging.Log;
私の pom.xml には親がありません。Java 5 で Maven 2 を使用しています。手がかりはありますか?