Package org.springframework.boot.dependency.tools.Dependency

Examples of org.springframework.boot.dependency.tools.Dependency.Exclusion


  }

  private Exclusion createExclusion(Element element) {
    String groupId = getTextContent(element, "groupId");
    String artifactId = getTextContent(element, "artifactId");
    return new Exclusion(groupId, artifactId);
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.dependency.tools.Dependency.Exclusion

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.