I have to use lint4j static analyzer tool in my project. I was referring http://www.jutils.com/maven-plugin/ link to setup the same. But this does not tell me how to configure reports in lint4j. I am new to maven and have not used maven extensively. I have done below steps so far.
Created a lint4j plugin jar folder in my local repository. Added below dependency in pom.xml of my project.
<dependency> <groupId>lint4j</groupId> <artifactId>jutils-lint4j-plugin</artifactId> <version>1.3.1</version> </dependency> <reports> <report>jutils-lint4j-plugin</report> </reports>
- mvn clean install works fine for the project.
But what needs to be done to view the report now?