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

Examples of org.springframework.ide.eclipse.boot.core.internal.MavenSpringBootProject


  /**
   * @return a SpringBoot centric view on a eclipse project.
   */
  public static ISpringBootProject create(IProject project) throws CoreException {
    if (project.hasNature(M2E_NATURE)) {
      return new MavenSpringBootProject(project);
    } else {
      throw ExceptionUtil.coreException("This feature is only implemented for m2e enabled maven projects");
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.boot.core.internal.MavenSpringBootProject

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.