build-helper-maven-plugin
build-helper-maven-plugin copied to clipboard
Build Helper Maven Plugin
Bumps [org.codehaus.mojo:mojo-parent](https://github.com/mojohaus/mojo-parent) from 78 to 80. Release notes Sourced from org.codehaus.mojo:mojo-parent's releases. 80 Changes 🚀 New features and improvements Drop recommendedJavaBuildVersion property (#477) @slawekjaranowski 🐛 Bug Fixes Use simple checkstyle...
I'm trying to set a property for the year to use in the license ```xml Copyright © ${build.year} Millennial Technologies Stop the NPE org.codehaus.mojo build-helper-maven-plugin 3.5.0 build.year yyyy ``` Its...
mvn clean build-helper:parse-version versions:set -DnewVersion=${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${parsedVersion.nextBuildNumber} -DgenerateBackupPoms=false -DprocessAllModules -DgenerateBackupPoms=false This always leaves the buildNumber as is instead of incrementing [INFO] --- build-helper:3.5.0:parse-version (default-cli) @ test --- [INFO] Processing change of com.test:test:58.59.0.1...
If I'm doing a Maven build, I want to generate a property using the `timestamp-property` in the format `yyyy-MM-dd`, but I want it to reflect the current time zone of...
I'd like to be able to define a property by applying multiple possible regex replacements to a value. Specifically, I'd like to be able to, in Maven, canonicalize the Java...
I'm using `org.codehaus.mojo:build-helper-maven-plugin:3.3.0` on Windows. Let's say I want to use the `regex-property` goal to replace some value with the build directory path: ```xml test validate regex-property bar foo .*...
As a workaround for a rough spot in Artifactory, I'm using `remove-project-artifact` to clear artifacts from test builds on a Jenkins server. However, the metadata for the removed artifact isn't...
Hi Team, My understanding is that by default, the parse-versions goal, will generate the `nextIncrementalVersion` by taking the current incremental version number and adding 1. So, for example, if the...
Allow running the released-version goal with optional parameter versionPrefix, which filters the matched released versions to versions that begin with that prefix. For example, if the released versions are 1.3.1,...
The released-versions goal can only find the highest released version right now. I want to be able to use it to release new versions by: Detecting the most recent released...