親 pom を作成しようとしており、プラグインが定義されていますが、継承されたすべてのインスタンスの構成を変更する必要があります。したがって、<pluginManagement>
定義に構成を入れて でオーバーライドすることはできますが、子を既定のバージョン<plugin>
に戻すにはどうすればよいでしょうか?<pluginManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<executions...>
<configuration>
<configLocation>
(used by all children)
</configLocation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>
(unique to the parent)
</configLocation>
</configuration>
</plugin>
</plugins>
<build>
そのため、子は引き続き親の構成を表示します。