Added committing / tagging and pushing

This commit is contained in:
Marcin Grzejszczak
2017-03-09 12:38:34 +01:00
parent 2f3343e9a2
commit 442a7234eb
14 changed files with 548 additions and 136 deletions

View File

@@ -19,6 +19,7 @@ import org.springframework.boot.context.properties.EnableConfigurationProperties
import org.springframework.cloud.release.internal.Releaser;
import org.springframework.cloud.release.internal.ReleaserProperties;
import org.springframework.cloud.release.internal.builder.ProjectBuilder;
import org.springframework.cloud.release.internal.git.ProjectGitUpdater;
import org.springframework.cloud.release.internal.pom.ProjectUpdater;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@@ -28,6 +29,7 @@ import org.springframework.context.annotation.Configuration;
class ReleaserConfiguration {
@Bean Releaser releaser(ReleaserProperties properties) {
return new Releaser(properties, new ProjectUpdater(properties), new ProjectBuilder(properties));
return new Releaser(properties, new ProjectUpdater(properties),
new ProjectBuilder(properties), new ProjectGitUpdater());
}
}