Package org.springframework.ide.eclipse.boot.core

Examples of org.springframework.ide.eclipse.boot.core.IMavenCoordinates


  private List<SpringBootStarter> getStarters(List<Dependency> deps) {
    if (deps != null) {
      ArrayList<SpringBootStarter> starters = new ArrayList<SpringBootStarter>();
      for (Dependency _dep : deps) {
        IMavenCoordinates dep = new MavenCoordinates(_dep.getGroupId(),
            _dep.getArtifactId(), _dep.getVersion());
        if (SpringBootStarter.isStarter(dep)) {
          starters.add(new SpringBootStarter(dep));
        }
      }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.boot.core.IMavenCoordinates

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.