versions
versions copied to clipboard
Versions Maven Plugin
Assume current version is 1.0.0-SNAPSHOT. I can set version to 1.0.1-SNAPSHOTby `mvn versions:set -DnextSnapshot`. In math, I can set version to the following: - 1.0.1-SNAPSHOT (finished yet) - 1.1.0-SNAPSHOT -...
Recently seen output of `display-dependency-updates`: ``` $ mvn org.codehaus.mojo:versions-maven-plugin:2.8.1:display-dependency-updates [INFO] Scanning for projects... [INFO] [INFO] -------------------< org.jenkins-ci:update-center2 >-------------------- [INFO] Building Jenkins Update Center Generator 3.6-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO]...
I'm trying to use this plugin to update the 1.1.2-SNAPSHOT version of a internal dependency in one pom.xml to a higher version published in an internal artifactory. The repository is...
Error when resolving version ranges for dependencies inside dependencyManagement of type pom/import
In our project we have a parent pom, where we have several imported BOM, e.g.: ```xml org.apache.logging.log4j log4j-bom [2.17.1,2.18) pom import ``` # What Expected As part of our build...
I'm using versions plugin to update versions of libraries in my project. I have single master pom.xml with 17 sub-modules. I asked on [stack-overflow](https://stackoverflow.com/questions/70306046/maven-versions-plugin-horribly-slow) how to speed up artifact resolution....
In Maven 3.6.3, using `mvn versions:display-dependency-updates` lists all dependency updates without taking into consideration the rules listed in `maven-versions-rule.xml`. This means it cannot serve as a predictor of what will...
I just found the `display-plugin-updates` goal hang. I got following output with `-X` option. ``` [DEBUG] super-pom version map org.apache.maven.plugins:maven-clean-plugin:2.5 org.apache.maven.plugins:maven-resources-plugin:2.6 org.apache.maven.plugins:maven-jar-plugin:2.4 org.apache.maven.plugins:maven-compiler-plugin:3.1 org.apache.maven.plugins:maven-surefire-plugin:2.12.4 org.apache.maven.plugins:maven-install-plugin:2.4 org.apache.maven.plugins:maven-deploy-plugin:2.7 org.apache.maven.plugins:maven-site-plugin:3.3 org.apache.maven.plugins:maven-antrun-plugin:1.3 org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5 org.apache.maven.plugins:maven-dependency-plugin:2.8...
Project structure: ``` . └── parent ├── moduleA │ └── submoduleB ``` parent pom.xml ``` org.example parent pom 1.0-SNAPSHOT moduleA/pom.xml ``` moduleA pom.xml ``` parent org.example 1.0-SNAPSHOT 4.0.0 moduleA pom...
I 'm meeting exact the same issue as https://stackoverflow.com/questions/45179530/versions-maven-plugin-doesnt-build-with-updated-properties I created the execution during the build using update-property and set the phase as validate So when I do like ```mvn...