Add default value for cloneOutputDirectory property
Closes gh-11969
This commit is contained in:
parent
e0843aabb1
commit
e0f8c711d8
|
@ -203,12 +203,9 @@ nohttp {
|
|||
}
|
||||
|
||||
tasks.register('cloneSamples', IncludeRepoTask) {
|
||||
if (!project.hasProperty("cloneOutputDirectory")) {
|
||||
throw new GradleException("Required parameter 'cloneOutputDirectory' not found")
|
||||
}
|
||||
repository = 'spring-projects/spring-security-samples'
|
||||
ref = samplesBranch
|
||||
outputDirectory = project.file("$cloneOutputDirectory")
|
||||
outputDirectory = project.hasProperty("cloneOutputDirectory") ? project.file("$cloneOutputDirectory") : project.file("build/samples")
|
||||
}
|
||||
|
||||
s101 {
|
||||
|
|
Loading…
Reference in New Issue