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

2022-06-09 Thread Sylwester Lachiewicz
Maybe maven-deploy-plugin with custom deployment repository? https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html Sylwester pt., 10 cze 2022, 08:05 użytkownik Delany napisał: > Building on this, you could try this bash script. It is very slow > > while read -r pom; do mvn help

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

2022-06-09 Thread Mantas Gridinas
Wouldn't the help plugin get executed for every module in the reactor and in turn output multiple build directories? On Fri, Jun 10, 2022, 09:04 Delany wrote: > Building on this, you could try this bash script. It is very slow > > while read -r pom; do mvn help:evaluate > -Dexpression=project.bu

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

2022-06-09 Thread Delany
Building on this, you could try this bash script. It is very slow while read -r pom; do mvn help:evaluate -Dexpression=project.build.directory -q -DforceStdout -f $pom && echo; done < <(find . -iname pom.xml) On Thu, 9 Jun 2022 at 21:20, Bernd Eckenfels wrote: > The Maven Help Plugin has some

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 https://github.com/apache/httpc

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

2022-06-09 Thread Bernd Eckenfels
The Maven Help Plugin has some functions, including printing evaluated project parameters. RESULT=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) https://maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html -- http://bernd.eckenfels.net

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 *

How to retrieve target folder or 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 *