fr.jmini.htmlchecker.cli.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlchecker-cli Show documentation
Show all versions of htmlchecker-cli Show documentation
Command line interface for htmlchecker
package fr.jmini.htmlchecker.cli;
import com.selesse.jxlint.Jxlint;
import com.selesse.jxlint.model.rules.Categories;
import fr.jmini.htmlchecker.HtmlCheckerCategories;
import fr.jmini.htmlchecker.rules.HtmlCheckerRules;
import fr.jmini.htmlchecker.settings.HtmlCheckerProgramSettings;
public class Main {
public static void main(String[] args) {
Categories.setCategories(HtmlCheckerCategories.class);
Jxlint jxlint = new Jxlint(new HtmlCheckerRules(), new HtmlCheckerProgramSettings(), false);
jxlint.parseArgumentsAndDispatch(args);
}
}