Package com.buschmais.jqassistant.core.scanner.impl

Examples of com.buschmais.jqassistant.core.scanner.impl.FileScannerImpl


          artifactDescriptor.setName(artifact.getArtifactId());
          artifactDescriptor.setVersion(artifact.getVersion());
          artifactDescriptor.setClassifier(artifact.getClassifier());
          artifactDescriptor.setType(type);
        }
        FileScanner scanner = new FileScannerImpl(store, scannerPlugins);
        try {
          for (Descriptor descriptor : scanner.scanDirectory(directory)) {
            artifactDescriptor.getContains().add(descriptor);
          }
        } catch (IOException e) {
          throw new MojoExecutionException("Cannot scan directory '" + directory.getAbsolutePath() + "'", e);
        }
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.scanner.impl.FileScannerImpl

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.