Re: how maven build plugins plugin use latest version

2014-05-28 Thread Curtis Rueden
Hi Sartisty, > How to use the latest release version, not modify plugin version in > pom.xml frequently? Why not just keep it as an eternal 1.0.0-SNAPSHOT or some such? Then you'll never have to change the POMs that use it. But as Baptiste points out, all of those downstream projects will sacrif

Re: how maven build plugins plugin use latest version

2014-05-28 Thread Baptiste Mathus
Hi, This is not possible with maven by design. It has to do with the "build reproducibility" thing you'll often read here. I think there were a recent thread about that very question, also have a look at it if you will. Cheers Le 27 mai 2014 10:32, "Sartisty" a écrit : > > hi, all, > I have dev

how maven build plugins plugin use latest version

2014-05-27 Thread Sartisty
hi, all, I have developed a maven build plugin and I will upgrade it frequently. How to use the latest release version, not modify plugin version in pom.xml frequently? One idea is no version setting, but it will generate too much warnings. Setting LATEST, it won't work. Is there any good solution?