mbien opened a new pull request, #7860:
URL: https://github.com/apache/netbeans/pull/7860
- this will show dep update hints for annotation processors declared in
`plugin/configuration/annotationProcessorPaths/*`
- had to update the implementation slightly since the list items didn't
implement `VersionablePOMComponent`
- auto completion is not implemented for this path
java/maven.model
- removed duplicated friend declaration
example:
```xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<compilerArgs>
<arg>-Xlint</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>6.6.0.Final</version> <!-- hint should appear
if a newer version is known -->
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists