Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Tamás Cservenák
Howdy, On Fri, May 6, 2022 at 4:01 PM Thomas Broyer wrote: > Fwiw, my "daily routine" with That Other Build Tool is to just ask it to > build and let it handle everything for me: never need to clean (through git > clean or the clean task), never need to nuke my local cache because it > really

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Thomas Broyer
On Fri, May 6, 2022 at 12:29 PM Tamás Cservenák wrote: > Howdy, > > no, not my memory, I rely on my "daily routine": I use Maven Repository > Manager, I regularly nuke my local repo, regularly execute `git clean -fdx` > on my checkout, and on checkout/branch change regularly do "quick-build" >

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Thomas Broyer
On Fri, May 6, 2022 at 1:24 PM Tamás Cservenák wrote: > Hm, I need to look more into MCOMPILER-496, as I found a m-compiler-p IT > that does exactly what Thomas described: > > https://github.com/apache/maven-compiler-plugin/tree/master/src/it/MCOMPILER-203-processorpath > > 3 module multi module

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Thomas Broyer
reason why I mention this, is that you use > terms from the "Maven2 era", like "reactor". Maven2 had the well known > "maven-reactor-plugin", that ceased to exist in Maven3. IMHO, let's clear > up the terms as otherwise we will just accumulate more misunderstandings

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Tamás Cservenák
: I believe you are quite > experienced, and I'd bet you did not start with Maven3, but most probably > Maven2 or even Maven1 :) The reason why I mention this, is that you use > terms from the "Maven2 era", like "reactor". Maven2 had the well known > "maven-reac

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Tamás Cservenák
Howdy, no, not my memory, I rely on my "daily routine": I use Maven Repository Manager, I regularly nuke my local repo, regularly execute `git clean -fdx` on my checkout, and on checkout/branch change regularly do "quick-build" `mvn clean install` (usually `mvn clean install -Dtest=void`) as very

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Tamás Cservenák
eactor". Maven2 had the well known "maven-reactor-plugin", that ceased to exist in Maven3. IMHO, let's clear up the terms as otherwise we will just accumulate more misunderstandings. For start, let's take Maven Extensions (core or build, does not matter). IMHO, having

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Thomas Broyer
On Thu, May 5, 2022 at 10:22 PM Tamás Cservenák wrote: > IMHO the antipattern here is the idea that "mvn install" is bad. > > But let's take it step by step. For simplicity sake, let's ignore remote > deploys/downloads for now. > Also, let's assume a developer workstation for the same reason >

Re: Maven Reactor and plugin "local" dependencies

2022-05-06 Thread Thomas Broyer
On Thu, May 5, 2022 at 10:16 PM Tamás Cservenák wrote: > Hm, > > By reading this blog entry from 2012 (!), I see it summarizes nicely at the > end: > * You may be using some broken plugins that you will need to fix, or > replace. > * You may be battling a circular dependency hell (which was why

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Tamás Cservenák
e. > > > Maven CLI will basically complain that it cannot resolve the module > > needed > > > by the plugin and fail, even if I explicitly list that module in the > > > project list. > > > > > > That occurs both with Maven 3 and 4. > >

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Tamás Cservenák
t cannot resolve the module > > needed > > > by the plugin and fail, even if I explicitly list that module in the > > > project list. > > > > > > That occurs both with Maven 3 and 4. > > > > > > The obvious workaround is to install the required module first and then > > run > > > the plugin but I'm trying to get rid of the need for `mvn install` > > > entirely. > > > > > > Is there a particular reason plugin dependencies are not considered by > > > Maven Reactor? > > > Is module-as-plugin-dependency a Maven antipattern? > > > > > > Thanks a lot for your help! > > > Florent > > > > > >

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Tamás Cservenák
and then run > the plugin but I'm trying to get rid of the need for `mvn install` > entirely. > > Is there a particular reason plugin dependencies are not considered by > Maven Reactor? > Is module-as-plugin-dependency a Maven antipattern? > > Thanks a lot for your help! > Florent >

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Thomas Broyer
gt; > > > The obvious workaround is to install the required module first and then > run > > the plugin but I'm trying to get rid of the need for `mvn install` > > entirely. > > > > Is there a particular reason plugin dependencies are not considered by > > Maven Reactor? > > Is module-as-plugin-dependency a Maven antipattern? > > > > Thanks a lot for your help! > > Florent > > >

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Tamás Cservenák
t; That occurs both with Maven 3 and 4. > > The obvious workaround is to install the required module first and then run > the plugin but I'm trying to get rid of the need for `mvn install` > entirely. > > Is there a particular reason plugin dependencies are not considered by > Maven Rea

Re: Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Francois Marot
here a particular reason plugin dependencies are not considered by > Maven Reactor? > Is module-as-plugin-dependency a Maven antipattern? > > Thanks a lot for your help! > Florent >

Maven Reactor and plugin "local" dependencies

2022-05-05 Thread Florent Biville
is to install the required module first and then run the plugin but I'm trying to get rid of the need for `mvn install` entirely. Is there a particular reason plugin dependencies are not considered by Maven Reactor? Is module-as-plugin-dependency a Maven antipattern? Thanks a lot for your help! Florent

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-02 Thread Stefan Seidel
to 3.0 or even 3.0-SNAPSHOT. Regards, Stefan František http://calavera.info Původní zpráva Od: Ron Wheeler Odesláno: středa, 1. července 2015 17:14 Komu: users@maven.apache.org Odpovědět: Maven Users List Předmět: Re: How to arrange dependency management for maven reactor if child

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-02 Thread Stephen Connolly
: Maven Users List Předmět: Re: How to arrange dependency management for maven reactor if child modules are versioned independently? What is the relationship between the independent modules? If a child module gets a new version, should that trigger a change for other modules that depend

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-02 Thread Ron Wheeler
: How to arrange dependency management for maven reactor if child modules are versioned independently? What is the relationship between the independent modules? If a child module gets a new version, should that trigger a change for other modules that depend on it? It seems to me from your description

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-01 Thread Ron Wheeler
. František http://calavera.info Původní zpráva Od: Ron Wheeler Odesláno: středa, 1. července 2015 17:14 Komu: users@maven.apache.org Odpovědět: Maven Users List Předmět: Re: How to arrange dependency management for maven reactor if child modules are versioned independently? What is the relationship

How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-01 Thread František Řezáč
as a last hope for solution or expert insight. http://stackoverflow.com/questions/30253133/how-to-arrange-dependency-management-for-maven-reactor-if-child-modules-are-vers We have a reactor pom whose child modules are versioned independently, ie. child module declares it's own version

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-01 Thread Ron Wheeler
after a long time, I'm sending it here as a last hope for solution or expert insight. http://stackoverflow.com/questions/30253133/how-to-arrange-dependency-management-for-maven-reactor-if-child-modules-are-vers We have a reactor pom whose child modules are versioned independently, ie. child module

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-01 Thread Stephen Connolly
to wide audience. Since it's still unanswered after a long time, I'm sending it here as a last hope for solution or expert insight. http://stackoverflow.com/questions/30253133/how-to-arrange-dependency-management-for-maven-reactor-if-child-modules-are-vers We have a reactor pom whose child modules

Re: How to arrange dependency management for maven reactor if child modules are versioned independently?

2015-07-01 Thread František Řezáč
dependency management for maven reactor if child modules are versioned independently? What is the relationship between the independent modules? If a child module gets a new version, should that trigger a change for other modules that depend on it? It seems to me from your description, that you do

[RESULT] [VOTE] Maven Reactor Plugin - Final Release 1.1 (RETIRED) - Take 3

2014-04-02 Thread Karl Heinz Marbaise
issue): http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11831version=20210 Based on my mistake, the files are already on final ASF repository: http://repository.apache.org/content/groups/public/ http://repository.apache.org/content/groups/public/org/apache/maven/plugins/maven-reactor

[VOTE] Final Release of Maven Reactor Plugin 1.1 (RETIRED)

2014-03-30 Thread Karl Heinz Marbaise
Hi to all, after the vote for the retiring of the plugin has succeeded now the final release of the plugin. The vote is open for 72 hours. [ ] +1 Yes, it's about time [ ] -1 No, because... Kind regards Karl-Heinz Marbaise

[CANCLE] Re: [VOTE] Final Release of Maven Reactor Plugin 1.1 (RETIRED)

2014-03-30 Thread Karl Heinz Marbaise
Canceled. Sorry...forget things to mentioned... On 3/30/14 5:05 PM, Karl Heinz Marbaise wrote: Hi to all, after the vote for the retiring of the plugin has succeeded now the final release of the plugin. The vote is open for 72 hours. [ ] +1 Yes, it's about time [ ] -1 No, because... Kind

[RESULT] [VOTE] Retire Maven Reactor Plugin

2014-03-24 Thread Karl Heinz Marbaise
Hi, the vote has passed with the following results: +1 (binding): Hervé Boutemy, Olivier Lamy, Kristian Rosenvold, Stephen Connolly, Stephane Nicoll, +1 (non binding): Mirko Friedenhagen, Jason van Zyl, Toni Chemit, Anders Hammar, Dominik

Re: [RESULT] [VOTE] Retire Maven Reactor Plugin

2014-03-24 Thread Karl Heinz Marbaise
Hi, sorry i missed Robert Scholte +1 (binding)... Kind regards Karl-Heinz Marbaise On 3/24/14 12:11 PM, Karl Heinz Marbaise wrote: Hi, the vote has passed with the following results: +1 (binding): Hervé Boutemy, Olivier Lamy, Kristian Rosenvold, Stephen Connolly,

Re: [VOTE] Retire Maven Reactor Plugin

2014-03-23 Thread Dominik Bartholdi
+1 On 22.03.2014, at 22:52, Karl Heinz Marbaise khmarba...@gmx.de wrote: Hi, based on the decision we have made on the 18. february 2014 to define End Of Life of Maven 2 http://maven.apache.org/maven-2.x-eol.html I would suggest to retire the Maven Reactor Plugin. The last release has

[VOTE] Retire Maven Reactor Plugin

2014-03-22 Thread Karl Heinz Marbaise
Hi, based on the decision we have made on the 18. february 2014 to define End Of Life of Maven 2 http://maven.apache.org/maven-2.x-eol.html I would suggest to retire the Maven Reactor Plugin. The last release has been made on 23rd of september 2008 version 1.0. Apart from that the complete

Re: maven reactor customization

2012-12-27 Thread Karl Heinz Marbaise
Hi Francis, Under maven 3.0 building a multi module project, I need to customize the reactor building the multimodule as the last project instead of the first project as now. The first question which comes into my mind is: Why do you need such customization? The order in the reactor is

Re: maven reactor customization

2012-12-27 Thread Benson Margulies
You cannot change Maven's behavior for aggregate projects. If, for example, want to make a package at the end, add one more module that makes the package. The order of the build in terms of executions in the aggregate project versus the build of the modules is not customizable. In a pinch the

maven-reactor-plugin: still active?

2011-10-21 Thread Laird Nelson
Is the maven-reactor-plugin still alive and viable? I want to make sure that if I include it in my pom for a particular task it isn't doing anything outmoded. Thanks, Laird -- http://about.me/lairdnelson

Re: maven-reactor-plugin: still active?

2011-10-21 Thread Olivier Lamy
Hello, No real maintenance on this as some features are now included in core with 3.x 2011/10/21 Laird Nelson ljnel...@gmail.com: Is the maven-reactor-plugin still alive and viable?  I want to make sure that if I include it in my pom for a particular task it isn't doing anything outmoded

maven reactor plugin and build order

2009-07-14 Thread Sahoo
While trying to use reactor:resume to resume a build, I see the order of build changing. See the output below. The order as reported initially is not same as the order reactor plugin is following. Why? glassf...@~/WS/gf/v3.trunk.new$ mvn reactor:resume -DprintOnly=true

Maven Reactor

2008-10-07 Thread solo1970
Is there a way to call Maven to get the output of the Reactor only? I am interested in knowing the order in which the various POMs will be built only as information first -- View this message in context: http://www.nabble.com/Maven-Reactor-tp19858666p19858666.html Sent from the Maven - Users

RE: Maven Reactor

2008-10-07 Thread Brian E. Fox
Validate is the first phase that usually has nothing bound to it. (only the enforcer does that I know of) so you could use that. -Original Message- From: solo1970 [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2008 6:52 AM To: users@maven.apache.org Subject: Maven Reactor

Re: Maven Reactor

2008-10-07 Thread Lee Meador
has nothing bound to it. (only the enforcer does that I know of) so you could use that. -Original Message- From: solo1970 [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2008 6:52 AM To: users@maven.apache.org Subject: Maven Reactor Is there a way to call Maven to get

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-10-01 Thread Rodrigo Ruiz
in your modules list. (That's what a Maven reactor is: a multimodule build.) The reactor plugin has no way to build third-party libraries like Hibernate; it would have to pull the code down out from some remote SCM to do that. Would it work if I have a domain module which is used by several

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-09-30 Thread Wim Deblauwe
a dependency, not part of a multimodule build) to make that part of the chain (in either direction), if of course the source code is available on the building pc. regards, Wim 2008/9/28 Dan Fabulich [EMAIL PROTECTED] The Maven team is pleased to announce the release of the Maven Reactor Plugin

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-09-30 Thread Dan Fabulich
. (That's what a Maven reactor is: a multimodule build.) The reactor plugin has no way to build third-party libraries like Hibernate; it would have to pull the code down out from some remote SCM to do that. Would it work if I have a domain module which is used by several applications (but is just

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-09-28 Thread Dan Fabulich
? Do you mean this page? http://maven.apache.org/plugins/maven-reactor-plugin/ I feel like that page pretty clearly outlines what you can do with Maven Reactor Plugin. Does that not make (enough) sense? There's a more detailed explanation of use cases for the reactor plugin here: http

[ANN] Maven Reactor Plugin 1.0 Released

2008-09-27 Thread Dan Fabulich
The Maven team is pleased to announce the release of the Maven Reactor Plugin, version 1.0. This plugin can build a subset of interdependent projects in a reactor. It should be useful in large reactor builds that include irrelevant stuff you're not working on. http://maven.apache.org

Re: [ANN] Maven Reactor Plugin 1.0 Released

2008-09-27 Thread Paul Benedict
Dan, Congrats on the plugin. Could you maybe add to the plugin home page why this plugin is required or useful? What common problem is it trying to solve? It would be nice to know that background, because I am grasping to find its purpose. Paul

New sandbox plugin: maven-reactor-plugin

2008-08-14 Thread Dan Fabulich
I've checked in a new plugin to the sandbox called the Maven Reactor Plugin. You can use it to build a subset of interdependent projects in a reactor. It should be useful in large reactor builds that include irrelevant stuff you're not working on. It includes the following goals

Re: Maven reactor environment

2005-02-17 Thread Brett Porter
on the start up, I need to copy my bundle in the plugin resources. In the specific case, Maven reactor doesnt find the bundle (exactly the goal of the plugin called by maven:reactor). Well, my god feeling is that the maven:reactor loads the environment of all plugins at the start up and doesnt

Maven reactor environment

2005-02-12 Thread Siveton Vincent
maven:reactor, a loader problem appears: * if the bundle was already copied in the plugin resources, the bundle is correctly found, then it works very well. * if the bundle doesnt exist on the start up, I need to copy my bundle in the plugin resources. In the specific case, Maven reactor doesnt

Re: maven reactor does not inherit from parent's resources?

2004-10-06 Thread dan tran
http://jira.codehaus.org/browse/MPMULTIPROJECT-39 ? On Wed, 6 Oct 2004 11:21:57 +0200, Stéphane Nicoll [EMAIL PROTECTED] wrote: Hello list, I have a structure of maven projects. In the root project, I have defined parameters related to deployment (site and artifacts). Other projects

Re: maven reactor does not inherit from parent's resources?

2004-10-06 Thread dan tran
=**/project.xml goals=bsb:site banner=Deploying site for ignoreFailures=true/ /goal Cheers, s/ -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: mercredi 6 octobre 2004 16:23 To: Maven Users List Subject: Re: maven reactor does not inherit from

Maven - Reactor tag

2004-08-19 Thread Gustavo Sousa
I'm a java developer at a portuguese company and where trying/using Maven for our nightly builds/ distribution builds. And my problem is that where using the Multiproject plugin (that uses the reactor tag) to compile a list of projects and distribuitions and using our own

Re: Understanding Maven Reactor

2004-03-24 Thread Webb Morris
Maven will always try to download dependencies from the project.xml in the directory from where you run Maven before it attempts to execute any goals. You should only specify the dependencies for the subprojects that need them. The top level project.xml should only contain dependencies that

preferred workflow j2ee project: maven reactor or multiproject goal?

2004-02-24 Thread Johan Andries
generation, app creation deployment) needs some specific guidance and therefore the multiproject goal is used instead of the maven reactor? I'm just trying to figure which is the preferred way of working: either to use the reactor or to use the multiproject goal. regards, Johan

Re: preferred workflow j2ee project: maven reactor or multiproject goal?

2004-02-24 Thread Jim Crossley
instead of the maven reactor? I'm just trying to figure which is the preferred way of working: either to use the reactor or to use the multiproject goal. regards, Johan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Maven reactor and versions

2003-10-08 Thread Vincent Massol
than Maven here... :-) Thanks -Vincent -Original Message- From: Eric Berenguier [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 12:05 To: Maven Users List Subject: Maven reactor and versions Hi, I'm using maven reactor to execute a goal on several projects in subdirectories

Maven Reactor Idiosyncracies

2003-09-24 Thread Steve Garcia
I've had some good luck integrating Maven Reactor with my product. In this process I've come up with a few questions (I couldn't find answers in the Wiki): I have project.xml maven.xml | --Project A (project.xml, maven.xml) | --Project B (project.xml, maven.xml

Maven / reactor memory consumption

2003-07-18 Thread BRUNOT Sébastien
Hi, I'm using maven 1.0 b10 on a win32 platform, to build the sample everest project provided with Vincent Massol TSSS slides about Maven. The build process uses up to 150M of RAM : is it a normal behavior ? Sebastien BRUNOT -