Skip to content

Commit

Permalink
CAMEL-19862: align Apache parent with Camel. (#11604)
Browse files Browse the repository at this point in the history
Use correct property for the license plugin version.
  • Loading branch information
klease authored Sep 28, 2023
1 parent 57b0c31 commit d7dadbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
final String properties = Stream.concat(
camelParentPomXmlModel.getProperties().entrySet().stream(),
camelPomXmlModel.getProperties().entrySet().stream()
.filter(property -> property.getKey().equals("mycila-license-version")))
.filter(property -> property.getKey().equals("license-maven-plugin-version")))
.filter(property -> includes.test((String) property.getKey()) && !excludes.test((String) property.getKey()))
.map(property -> "<" + property.getKey() + ">" + property.getValue() + "</" + property.getKey() + ">")
.sorted()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>25</version>
<version>30</version>
<relativePath />
</parent>

Expand Down

0 comments on commit d7dadbc

Please sign in to comment.