我想在我的Settings.xml
文件中定义全局插件,如下所示:
<settings>
<profiles>
<profile>
<id>spotbugs</id>
<build>
<plugins>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.0.4</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<failOnError>true</failOnError>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>1.10.1</version>
</plugin>
</plugins>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<activeProfiles>
<activeProfile>spotbugs</activeProfile>
</activeProfiles>
</settings>
不幸的是,我得到:
[WARNING] [WARNING] 构建有效设置时遇到一些问题 [WARNING] 无法识别的标签:'build'(位置:已看到 START_TAG ...\n ... @5:14)@ /Users/gs/.m2 /settings.xml,第 5 行,第 14 列 [警告]
是否可以将上面的插件信息放入pluginRepositries
?我想对此插件进行全局配置,而不是编辑每个 pom.xml 以使用mvm spotbugs:spotbugs