Re: Maven Release Plugin - Reopen MRELEASE-282

2022-06-17 Thread Slawomir Jaranowski
Hi, Reopened. PR are welcome. pt., 17 cze 2022 o 18:08 Pablo Caraballo Llorente napisał(a): > Hello. > > As a user of the maven-release-plugin, I find that the issue MRELEASE-282 > is an improvement > that > would be useful to improve the con

Maven Release Plugin - Reopen MRELEASE-282

2022-06-17 Thread Pablo Caraballo Llorente
Hello. As a user of the maven-release-plugin, I find that the issue MRELEASE-282 is an improvement that would be useful to improve the configuration of the prepare and perform goals. In my specific case, I cannot configure different arguments f

Re: Maven search for a class or method on classpath - how?

2022-06-17 Thread Romain Manni-Bucau
Likely not helping through maven ecosystem but a quick solution can be to use bash: CLASSNAME=ISearchThisClass && cd project/ && mvn dependency:copy-dependencies && for i in target/dependency/*.jar; do unzip -l $i | grep $CLASSNAME.class && echo $i; done side note: an alternative script not copyi

Re: Maven search for a class or method on classpath - how?

2022-06-17 Thread Tamás Cservenák
Howdy, Maven Indexer [1] can help you here as it does index classes within JAR (if configured so). It may be option to extend indexer-cli (or create new tool) that would let you then: a) index your project b) perform queries against created index Will look into this as my time allows, but at the

Re: Maven search for a class or method on classpath - how?

2022-06-17 Thread Manfred Moser
This might not help .. but your IDE will allow you to do that.. On the command line you might have to do a dependency:tree or dependency:list and then dependency:list-classes ... Or you could fork the plugin to create a new goal that basically does the two in one go on the code level.. and the

Maven Resolver configuration

2022-06-17 Thread Slawomir Jaranowski
Hi, New Resolver 1.8.x which is included in Maven 3.9.x has many valuable features, like split local repository. There are many configuration options for Resolver [1] Currently all those options can be set by - user properties by command line - not usable - system properties provided by globall

Maven search for a class or method on classpath - how?

2022-06-17 Thread Graham Leggett
Hi all, I find myself with a large project, not knowing which dependency(ies) is transitively providing a given class. Is there a plugin that will allow a search within a project like this? I can sort of do something with dependency:list-classes, but this is limited in that it will only list c