Re: Getting version upgrade advise to upgrade a BOM..

2021-05-03 Thread Bernd Eckenfels
An: Maven Users List Betreff: Re: Getting version upgrade advise to upgrade a BOM.. Hi, Update: I did some experiments to see how all of this works right now. If I do this in my test project (with a few extra deliberately placed 'old' dependencies) * mvn versions:display-dependency-updates

Re: Getting version upgrade advise to upgrade a BOM..

2021-05-03 Thread Niels Basjes
Hi, Update: I did some experiments to see how all of this works right now. If I do this in my test project (with a few extra deliberately placed 'old' dependencies) * mvn versions:display-dependency-updates versions:display-plugin-updates* I get - All the dependencies inside the google

Re: Getting version upgrade advise to upgrade a BOM..

2021-05-02 Thread Niels Basjes
Thanks, This actually works. I find this surprising because apparently this plugin cannot indicate what needs to be changed, but it can do the change. Niels On Sun, May 2, 2021 at 4:25 PM Nick Stolwijk wrote: > To update the BOM dependencies you can use the Maven versions plugin: > > mvn

Re: Getting version upgrade advise to upgrade a BOM..

2021-05-02 Thread Nick Stolwijk
To update the BOM dependencies you can use the Maven versions plugin: mvn versions:use-latest-versions versions:update-properties -DgenerateBackupPoms=false Hth, Nick Stolwijk ~~~ Try to leave this world a little better than you found it and, when your turn comes to die, you can die happy in

Re: Getting version upgrade advise to upgrade a BOM..

2021-05-02 Thread Niels Basjes
Hi, Thanks for the suggestion. Apparently the "standard" maven versions plugin does not do this correctly yet. I was looking at this renovate tool yet what I found is that it seems to only support creating pull/merge requests. This is very nice but not what I want right now. Is there a way to

Re: Getting version upgrade advise to upgrade a BOM..

2021-04-29 Thread Tomo Suzuki
Hi Niels, (Thank you for using the libraries-bom! I'm one of the maintainers of the BOM.) I don't know how to do it in Maven. However, I often see people using dependabot or renovatebot integrated with their repositories. An example pull request by renovatebot:

Re: Getting version upgrade advise to upgrade a BOM..

2021-04-29 Thread Delany
Is it this https://github.com/mojohaus/versions-maven-plugin/issues/395 Regards, Delany On Thu, 29 Apr 2021, 22:22 Niels Basjes, wrote: > Hi, > > I see quite a few situations where the dependencies for toolkit are > provided in the form of a dependency you must "import" in > the

Getting version upgrade advise to upgrade a BOM..

2021-04-29 Thread Niels Basjes
Hi, I see quite a few situations where the dependencies for toolkit are provided in the form of a dependency you must "import" in the dependencyManagement section. They provide this to ensure you always have a working combination for a lot of closely related dependencies. To illustrate the