mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 09:12:14 +00:00
Fix deprecation warnings for SchemaZipPlugin
- baseName -> archiveBaseName - classifier -> archiveClassifier Closes gh-9546
This commit is contained in:
parent
b67d2e0e4b
commit
0d8ee3a908
@ -11,9 +11,9 @@ public class SchemaZipPlugin implements Plugin<Project> {
|
||||
public void apply(Project project) {
|
||||
Zip schemaZip = project.tasks.create('schemaZip', Zip)
|
||||
schemaZip.group = 'Distribution'
|
||||
schemaZip.baseName = project.rootProject.name
|
||||
schemaZip.classifier = 'schema'
|
||||
schemaZip.description = "Builds -${schemaZip.classifier} archive containing all " +
|
||||
schemaZip.archiveBaseName = project.rootProject.name
|
||||
schemaZip.archiveClassifier = 'schema'
|
||||
schemaZip.description = "Builds -${schemaZip.archiveClassifier} archive containing all " +
|
||||
"XSDs for deployment at static.springframework.org/schema."
|
||||
|
||||
project.rootProject.subprojects.each { module ->
|
||||
@ -40,4 +40,4 @@ public class SchemaZipPlugin implements Plugin<Project> {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user