Re: Recent troubles with release:prepare

2020-05-06 Thread Enrico Olivelli
Il Mer 6 Mag 2020, 08:29 Francesco Chicchiriccò ha scritto: > Hi Enrico, > see my replies below. > > Regards. > > On 2020/05/04 21:18:26, Enrico Olivelli wrote: > > Francesco, > > which version of Maven are you using ? (you told you have tried different > > Maven versions) > > I am normally usin

Finding SNAPSHOT dependencies without compiling first

2020-05-06 Thread Francois MAROT
Hello all, I have a simple requirement: I would like to determine very fast if my multi-module project has any SNAPSHOT dependency. First try was with the /mvn dependency:tree / command and grepping for the word SNAPSHOT. But the dependency plugin seems to use the repository dependencies, so it i

Re: Accessing a nexus repository requiring a client certificate

2020-05-06 Thread Michael Osipov
Am 2020-05-05 um 22:03 schrieb Alex O'Ree: I was looking over the docs for the settings.xml file and noted that it looks like it's possible to access a nexus repository using a client certificate of sorts. It's not clear the docs if a JKS can be used or if it must be a ssh private key or what. h

Re: Finding SNAPSHOT dependencies without compiling first

2020-05-06 Thread Nick Stolwijk
Hello, I don't think I can reproduce your problem. I've tried this on one of my multimodules. 1. Remove everything of the multimodule from the local repository. 2. Run mvn dependency:tree -Dincludes=*:*:*:*-SNAPSHOT Output: https://gist.github.com/nickstolwijk/4042c9ca4a71bc4886ac528b6621e5c6 3.

[ANN] Apache Maven Verifier 1.7.2 Released

2020-05-06 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache Maven Verifier, version 1.7.2 This library provides a test harness for Maven integration tests. https://maven.apache.org/shared/maven-verifier/ [https://maven.apache.org/shared/maven-verifier/] You should specify the depend

maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Alain Désilets
The output of the license-list goal and the plugin documentation say that this is a list of 'availalble licenses'. I am not sure what 'available' means in this context. I *believe* it means those are the various licenses under which I could distribute the project. But I am not sure. Can someone co

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Greg Chabala
The documentation has an example of the output: https://www.mojohaus.org/license-maven-plugin/examples/example-license-list.html On Wed, May 6, 2020 at 3:03 PM Alain Désilets wrote: > The output of the license-list goal and the plugin documentation say that > this is a list of 'availalble licens

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Alain Désilets
On Wed, May 6, 2020, 4:16 PM Greg Chabala wrote: > The documentation has an example of the output: > > https://www.mojohaus.org/license-maven-plugin/examples/example-license-list.html Yes I saw that. I just don't know how to interpret that list. Is it (A) the list of all licenses under which I

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Greg Chabala
Ah, I see. I believe it's closer to (A), but I would describe it as 'the list of licenses that the plugin knows to exist in the universe'. I believe (B) would be the license:third-party-report goal: https://www.mojohaus.org/license-maven-plugin/third-party-report-mojo.html On Wed, May 6, 2020 at

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Alain Désilets
On Wed, May 6, 2020 at 6:48 PM Greg Chabala wrote: > Ah, I see. I believe it's closer to (A), but I would describe it as 'the > list of licenses that the plugin knows to exist in the universe'. > Really? Not terribly useful. I can probably accurate version of that info from wikipedia. > > I be

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Greg Chabala
Ah, like what you get from the standard dependency report? E.g. https://maven.apache.org/plugins/maven-dependency-plugin/dependencies.html#Licenses On Wed, May 6, 2020 at 5:55 PM Alain Désilets wrote: > On Wed, May 6, 2020 at 6:48 PM Greg Chabala > wrote: > > > Ah, I see. I believe it's closer

Re: maven-license-plugin: what does 'license-list' actually produce?

2020-05-06 Thread Alain Désilets
On Wed, May 6, 2020 at 7:10 PM Greg Chabala wrote: > Ah, like what you get from the standard dependency report? E.g. > > https://maven.apache.org/plugins/maven-dependency-plugin/dependencies.html#Licenses Yes! Thx, that's exactly what I was looking for. Alain