すべてのMavenサブプロジェクトに同じ.targetファイルを使用することは可能ですか?
親の.pomファイルからのスニペット
<groupId>root.server</groupId>
<artifactId>root.server</artifactId>
子の.pomファイルからのスニペット
<groupId>child.project</groupId>
<artifactId>child.project.parent</artifactId>
<target>
<artifact>
<groupId>root.server</groupId>
<artifactId>root.server</artifactId>
<version>${project.version}</version>
<classifier>targetfile</classifier>
</artifact>
</target>
子プロジェクトで「mvncleaninstall」を実行しようとすると、例外が発生しますCould not resolve target platform specification artifact
。子プロジェクトの親で「mvncleaninstall」を試してみると、すべて正常に機能します。
すべてのプロジェクト(親+サブプロジェクト)に1つの.targetファイルを再利用する方法はありますか?