
|
If you were logged in you would be able to see more operations.
|
|
|
|
Issue Links:
|
Incorporate
|
|
|
|
This issue is incorporated by:
|
|
KNL-281
Base pom plugin dependencies missing <groupId>
|
|
|
|
|
|
|
|
<reporting> maven-jxr-plugin does not have an explicitly defined <artifactId>. Explicit location elements are good.
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
to
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
|
|
Description
|
<reporting> maven-jxr-plugin does not have an explicitly defined <artifactId>. Explicit location elements are good.
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
to
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin> |
Show » |
| There are no comments yet on this issue.
|
|