You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2020. It is now read-only.
This project is abandoned and unlikely will be supported in future
HuntBugs 0.0.11
New Java bytecode static analyzer tool based on Procyon Compiler Tools aimed to supersede the FindBugs.
Currently in early development stage, though already could be tried.
Currently 222 FindBugs warnings reimplemented and several new warnings added.
Use with Maven
Compile project and run mvn one.util:huntbugs-maven-plugin:huntbugs
The output report is located in target/huntbugs/report.html
Use with Ant
Build huntbugs-ant-plugin via mvn package (or alternatively download from here)
Take the resulting huntbugs-ant-plugin-<version>-nodeps.jar
Command-line tool is mostly aimed to aid developers. Nevertheless you may use it if you like.
To launch use mvn exec:java -Dexec.args="...args..." inside huntbugs subdirectory. Examples:
mvn exec:java -Dexec.args="-lw" will list all the warnings.
mvn exec:java -Dexec.args="myfolder/*.jar" will analyze all jars inside myfolder writing the report into huntbugs.warnings.xml and huntbugs.warnings.html in current directory.
mvn exec:java will show all the supported command line options.