apache-rat-plugin允许许可标头在我的类文件顶部的正常注释和java doc注释中。我怎样才能允许许可标题在正常注释中,而不是在java doc注释中?
我的插件配置如下;
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.12</version>
<executions>
<execution>
<id>rat-checks</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<excludeSubprojects>false</excludeSubprojects>
<excludes>
<!-- my excludes here -->
</excludes>
</configuration>
</plugin>
答案 0 :(得分:0)
这似乎不能用apache-rat-plugin配置。我将不得不使用license-maven-plugin。