Package org.springframework.boot.cli.compiler.dependencies

Examples of org.springframework.boot.cli.compiler.dependencies.ArtifactCoordinatesResolver


   * @return this {@link DependencyCustomizer} for continued use
   */
  public DependencyCustomizer add(String module, String classifier, String type,
      boolean transitive) {
    if (canAdd()) {
      ArtifactCoordinatesResolver artifactCoordinatesResolver = this.dependencyResolutionContext
          .getArtifactCoordinatesResolver();
      this.classNode.addAnnotation(createGrabAnnotation(
          artifactCoordinatesResolver.getGroupId(module),
          artifactCoordinatesResolver.getArtifactId(module),
          artifactCoordinatesResolver.getVersion(module), classifier, type,
          transitive));
    }
    return this;
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.cli.compiler.dependencies.ArtifactCoordinatesResolver

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.