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

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


      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));
        }
      }
      return starters;
    }
    return NO_STARTERS;
View Full Code Here


  public String getProjectName() {
    return this.project.getProject().getName();
  }

  public void performOk() throws CoreException {
    final SpringBootStarter starter = chosen.getValue();
    if (chosen.getValue()!=null) {
      Job job = new Job("Modifying starters for "+getProjectName()) {
        @Override
        protected IStatus run(IProgressMonitor monitor) {
          try {
View Full Code Here

TOP

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

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.