List of usage examples for org.springframework.ide.eclipse.boot.core Bom getRepos
public List<Repo> getRepos()
From source file:org.springframework.ide.eclipse.boot.core.internal.MavenSpringBootProject.java
private void createBomIfNeeded(Document pom, Bom bom) { if (bom != null) { Element bomList = ensureDependencyMgmtSection(pom); Element existing = PomEdits.findChild(bomList, DEPENDENCY, childEquals(GROUP_ID, bom.getGroupId()), childEquals(ARTIFACT_ID, bom.getArtifactId())); if (existing == null) { createBom(bomList, bom);/*from w w w . j a va 2 s . co m*/ addReposIfNeeded(pom, bom.getRepos()); } } }