Re: How to retrieve target folder / jar paths from multi-module Maven project

2022-06-10 Thread Tommy Svensson
On a unix system or Git Bash on Windows, cd to project root and do: find . -name \*.jar If you need this automatically as part of the build process then it is a different thing. If so, consider writing a maven plugin for that. I doubt such already exists. If on a unix system only!, there

Re: How to retrieve target folder / jar paths from multi-module Maven project

2022-06-09 Thread Karl Heinz Marbaise
Hi, On 07.06.22 05:22, Laurian Angelescu wrote: Is it possible to invoke *mvn* on the command line to output either 1) the paths to all target folders where jars get packaged or 2) the file paths of the jars themselves? For example, in a multi-module project like

How to retrieve target folder / jar paths from multi-module Maven project

2022-06-09 Thread Laurian Angelescu
Is it possible to invoke *mvn* on the command line to output either 1) the paths to all target folders where jars get packaged or 2) the file paths of the jars themselves? For example, in a multi-module project like https://github.com/apache/httpcomponents-core.git, I would like to invoke: *mvn