Added spring-boot to the list of projects that we don't want to clone
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user