Example usage for org.springframework.ide.eclipse.boot.core MavenCoordinates MavenCoordinates

List of usage examples for org.springframework.ide.eclipse.boot.core MavenCoordinates MavenCoordinates

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.core MavenCoordinates MavenCoordinates.

Prototype

public MavenCoordinates(String group, String artifact, String classifier, String version) 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.core.internal.MavenSpringBootProject.java

private List<IMavenCoordinates> toMavenCoordinates(List<Dependency> dependencies) {
    ArrayList<IMavenCoordinates> converted = new ArrayList<>(dependencies.size());
    for (Dependency d : dependencies) {
        converted.add(/*from www  .j a v a  2s .c  o  m*/
                new MavenCoordinates(d.getGroupId(), d.getArtifactId(), d.getClassifier(), d.getVersion()));
    }
    return converted;
}