Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build.gradle: use get() to convert Jar-task properties to strings #2336

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,25 @@ task libDist(dependsOn: subprojects.build, description: 'Builds and copies the e
subprojects.each {project ->
if(!project.hasProperty('mainClassName')){
project.tasks.withType(Jar).each {archiveTask ->
if(archiveTask.archiveClassifier == "sources"){
String classifier = archiveTask.archiveClassifier.get()
String ext = archiveTask.archiveExtension.get()
if (classifier == "sources") {
copy {
from archiveTask.archivePath
into sourceFolder
rename {project.name + '-' + archiveTask.archiveClassifier +'.'+ archiveTask.archiveExtension}
rename {project.name + '-' + classifier + '.' + ext}
}
} else if(archiveTask.archiveClassifier == "javadoc"){
} else if (classifier == "javadoc") {
copy {
from archiveTask.archivePath
into javadocFolder
rename {project.name + '-' + archiveTask.archiveClassifier +'.'+ archiveTask.archiveExtension}
rename {project.name + '-' + classifier + '.' + ext}
}
} else{
copy {
from archiveTask.archivePath
into libFolder
rename {project.name + '.' + archiveTask.archiveExtension}
rename {project.name + '.' + ext}
}
}
}
Expand Down
Loading