i have use lint4j static analyzer tool in project. referring http://www.jutils.com/maven-plugin/ link setup same. not tell me how configure reports in lint4j. new maven , have not used maven extensively. have done below steps far.
created lint4j plugin jar folder in local repository. added below dependency in pom.xml of 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 project.
but needs done view report now?
assembling bits on information scattered on web, believe doing mvn site should enough (at least according maven project info reports plugin documentation)
notes:
- i not find working version of plugin; place hosts (soapui svn repo) seems have broken .jar ("plugin descriptor not found")
- version
1.3.1sounds strange since the official download page mentions version 0.9.1 - as of version 4.0.0 of maven pom
<reports>element deprecated (and ignored), should replaced<reporting>. more info on newer configuration syntax can found in official documentation. - the project seems have been abandoned since 2007; i'm sure there better tools task, wouldn't surprised if plugin stopped working due changes in java or maven @ point
Comments
Post a Comment