Skip to content

Commit

Permalink
Manual merge of base/pom.xml change wrt cleansed version
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 4, 2024
1 parent ab31679 commit a8b07cb
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -309,13 +309,31 @@ NOTE: NOT to be used by components outside of Jackson: application code should o
</resources>
</configuration>
</execution>
<!-- 04-May-2024, tatu: For [core#1264] need "cleansed" version
-->
<execution>
<id>regex-property</id>
<!-- default phase is "validate" as per https://www.mojohaus.org/build-helper-maven-plugin/usage.html
-->
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>project.version.underscore</name>
<value>${project.version}</value>
<regex>\.</regex>
<replacement>_</replacement>
<failIfNoMatch>true</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
<!-- 27-Nov-2022, tatu: [bom#56] Configure Felix-bundle and maven-jar plugins to

<!-- 27-Nov-2022, tatu: [bom#56] Configure Felix-bundle and maven-jar plugins to
use fixed Timestamp correctly for included class files (needed for Reproducible
Builds)
-->
<plugin>
-->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
Expand Down

0 comments on commit a8b07cb

Please sign in to comment.