Skip to content

Commit

Permalink
Fix classifier dropped in artifact pom.xml (#32100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Aug 8, 2024
1 parent adc3b2b commit 1f09065
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 1f09065

Please sign in to comment.