Package org.springframework.boot.loader.tools

Examples of org.springframework.boot.loader.tools.LibraryScope


  @Override
  public void doWithLibraries(LibraryCallback callback) throws IOException {
    Set<String> duplicates = getDuplicates(this.artifacts);
    for (Artifact artifact : this.artifacts) {
      LibraryScope scope = SCOPES.get(artifact.getScope());
      if (scope != null && artifact.getFile() != null) {
        String name = artifact.getFile().getName();
        if (duplicates.contains(name)) {
          this.log.debug("Duplicate found: " + name);
          name = artifact.getGroupId() + "-" + name;
View Full Code Here

TOP

Related Classes of org.springframework.boot.loader.tools.LibraryScope

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.