Add spring-boot-versions project

Add a new maven project containing a versions.properties file and
an effective POM. Rework existing projects to use the versions
artifacts.

Partially reverts 307fbba9e4

Fixes gh-913
This commit is contained in:
Phillip Webb
2014-05-20 23:52:34 +01:00
parent 8bcda1bcbe
commit 4fd4744724
6 changed files with 151 additions and 99 deletions

View File

@@ -45,7 +45,6 @@ public class PomManagedDependencies extends AbstractManagedDependencies {
public PomManagedDependencies(InputStream effectivePomInputStream) {
try {
Document effectivePom = readDocument(effectivePomInputStream);
for (Dependency dependency : readDependencies(effectivePom)) {
add(new ArtifactAndGroupId(dependency), dependency);
}