是否可以为每个 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>
当我在子项目中尝试“mvn clean install”时出现异常:Could not resolve target platform specification artifact
. 当我在子项目的父项中尝试“mvn clean install”时,一切正常。
有没有办法为所有项目(父项目+子项目)重用一个 .target 文件?