Package org.apache.maven.linkcheck.validation

Examples of org.apache.maven.linkcheck.validation.FileLinkValidator


    {
        if (lvm == null)
        {
            lvm = new LinkValidatorManager();
            lvm.setExclude(exclude);
            lvm.addLinkValidator(new FileLinkValidator());
            MavenJellyContext ctx;
            if (getProject() == null) {
                LOG.error("maven-linkcheck-plugin: No project set.");
                ctx = new MavenJellyContext();
            } else {
View Full Code Here


    {
        if (lvm == null)
        {
            lvm = new LinkValidatorManager();
            lvm.setExclude(exclude);
            lvm.addLinkValidator(new FileLinkValidator());
            MavenJellyContext ctx;
            if (getProject() == null) {
                //System.out.println("No project set.");
                ctx = new MavenJellyContext();
            } else {
View Full Code Here

  {
    if (lvm == null)
    {
      lvm = new LinkValidatorManager();
      lvm.setExclude(exclude);
      lvm.addLinkValidator(new FileLinkValidator());
      lvm.addLinkValidator(new HTTPLinkValidator());
      lvm.addLinkValidator(new MailtoLinkValidator());
      lvm.loadCache(cache);
    }
    return lvm;
View Full Code Here

TOP

Related Classes of org.apache.maven.linkcheck.validation.FileLinkValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.