There are at least two ways of using the checkstyle in the NetBean maven project
(at the time of 2019-07-24):
using the NetBeans's plugin checkstyle-beans
v4.1.0, last Update: 2016-02-09, uses Checkstyle v6.15.
The last declared supported version is NetBeans v8.1
*although it works with v8.2using the Maven's plugin maven-checkstyle-plugin
v3.1.0, last Update: 2019-05-12, uses Checkstyle v8.19
The last version of the github.com/checkstyle itself is v8.22
Questions:
- Can I update them both to the last checkstyle?
- Does they completely independent ?
- the checkstyle-beans shows the marks beside the line numbers in the IDE
- the maven-checkstyle-plugin can be used for the manual launch in the console, outside the IDE (
mvn -e checkstyle:check
).
Can it be configured and used inside the IDE ?