Skip to content

Commit

Permalink
Fix classifier dropped in artifact pom.xml (apache#32100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored and reeba212 committed Dec 4, 2024
1 parent ba8f810 commit 4ea15b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1978,8 +1978,8 @@ class BeamModulePlugin implements Plugin<Project> {
def dependencyNode = dependenciesNode.appendNode('dependency')
def appendClassifier = { dep ->
dep.artifacts.each { art ->
if (art.hasProperty('archiveClassifier')) {
dependencyNode.appendNode('archiveClassifier', art.archiveClassifier)
if (art.hasProperty('classifier')) {
dependencyNode.appendNode('classifier', art.classifier)
}
}
}
Expand Down

0 comments on commit 4ea15b4

Please sign in to comment.