versions
versions copied to clipboard
Versions Maven Plugin
Given following pom snippet: ``` 11 UTF-8 2.1.3.RELEASE org.springframework.boot spring-boot-dependencies ${spring-boot.version} pom import org.springframework.boot spring-boot-maven-plugin ${spring-boot.version} ``` Running `mvn update-properties' result in: ``` [INFO] --- versions-maven-plugin:2.7:update-properties (default-cli) @ demo-app ---...
Hi, Couple of questions/issues with display-dependency-updates 1. Can we filter by (say) groupId? So only our organization's dependencies are checked 2. The width of outdated-dependencies.txt seems to be fixed at...
This issue is kinda the same as #104 which was closed (because I think the creator did not responded) but I'll try to explain differently: Imagine a pom like this...
Hi, we have the following case within the team: **As a developer I want to see how I can check the topicality for my dependencies for my application in a...
I have attached a zip file [mvnVersionsIssues.zip](https://github.com/mojohaus/versions-maven-plugin/files/2054746/mvnVersionsIssues.zip) sufficient for creating a minimal working example of this bug. It contains two mvn projects, dots1 and dots2, where dots2 depends on dots1....
https://github.com/mojohaus/versions-maven-plugin/blob/master/src/main/java/org/codehaus/mojo/versions/UseLatestSnapshotsMojo.java#L149 Should not negate the test. Sorry, I don't have experience in updating github at this level. I have built and run the plugin locally, and it works better this...
I am using the versions plugin passing these parameters: ```mvn -f pom.xml org.codehaus.mojo:versions-maven-plugin:2.5:set --quiet -DgenerateBackupPoms=false -DnewVersion=18.4.0-20180724110658-SNAPSHOT -DprocessDependencies=false -DartifactId=FooBarWebServices -DgroupId=foo.bar``` My POM contains the following lines: ``` foo.bar FooBarWebServices 18.4.0-SNAPSHOT war...
The scenarios is as below using a parent pom that is separate from the inheriting child pom (ie. NOT a multi-module maven project). A parent pom defines a version range...
[use-next-releases is documented to have a `processParent` setting](https://www.mojohaus.org/versions-maven-plugin/use-next-releases-mojo.html#processParent). However, setting the setting to true does not update the parent pom. A look at the code confirms the Mojo never accesses...
Respect the `processParent` setting by introducing a new base class. Fixes #288 (`UseNextReleasesMojo`). Also, fixes an analogous bug in `ForceReleasesMojo`, `UseDepVersionMojo`, `UseNextReleasesMojo`, `UseNextSnapshotsMojo`, and `UseNextVersionsMojo` The other existing Mojos that...