Added spring-boot to the list of projects that we don't want to clone

This commit is contained in:
Marcin Grzejszczak
2018-06-25 15:14:35 +02:00
parent 997f4bd98f
commit d66931e0af
3 changed files with 3 additions and 2 deletions

View File

@@ -274,7 +274,7 @@ Use these properties to provide versions for the meta release.
- `releaser.meta-release.git-org-url` - The URL of the Git organization. We'll append each project's name to it.
Defaults to `https://github.com/spring-cloud`
- `releaser.meta-release.projects-to-skip` - List of projects that we should not clone and release. Spring Cloud release
train depends on projects that got already released. We default this list to `[spring-cloud-stream, spring-cloud-task]`.
train depends on projects that got already released. We default this list to `[spring-boot, spring-cloud-stream, spring-cloud-task]`.
- `releaser.git.fetch-versions-from-git` - If `true` then should fill the map of versions from Git. If `false` then picks fixed versions
- `releaser.git.clone-destination-dir` - Where should the Spring Cloud Release repo get cloned to. If null defaults to a temporary directory

View File

@@ -264,7 +264,7 @@ Use these properties to provide versions for the meta release.
- `releaser.meta-release.git-org-url` - The URL of the Git organization. We'll append each project's name to it.
Defaults to `https://github.com/spring-cloud`
- `releaser.meta-release.projects-to-skip` - List of projects that we should not clone and release. Spring Cloud release
train depends on projects that got already released. We default this list to `[spring-cloud-stream, spring-cloud-task]`.
train depends on projects that got already released. We default this list to `[spring-boot, spring-cloud-stream, spring-cloud-task]`.
- `releaser.git.fetch-versions-from-git` - If `true` then should fill the map of versions from Git. If `false` then picks fixed versions
- `releaser.git.clone-destination-dir` - Where should the Spring Cloud Release repo get cloned to. If null defaults to a temporary directory

View File

@@ -76,6 +76,7 @@ public class ReleaserProperties {
*/
private List<String> projectsToSkip = new ArrayList<String>() {
{
this.add("spring-boot");
this.add("spring-cloud-stream");
this.add("spring-cloud-task");
}