Re: automatic proxy for surefire

2012-02-17 Thread Romain Manni-Bucau
; and applies cleanly I suspect that it would get accepted and applied. -Stephen On 17 February 2012 09:03, Romain Manni-Bucau rmannibu...@gmail.com wrote: Hi, i wonder why proxy settings (understand proxy defined in settings.xml) can't be put in userproperties during the build. This way

Re: automatic proxy for surefire

2012-02-23 Thread Romain Manni-Bucau
Manni-Bucau wrote: proxy settings (understand proxy defined in settings.xml) By the way has any thought been given to better supporting -Djava.net.useSystemProxies=**true, i.e. automatic detection according to system settings? It works on most platforms for apps using

Re: any plan for colors?

2012-03-10 Thread Romain Manni-Bucau
vendredi 9 mars 2012 00:30:34 Romain Manni-Bucau a écrit : Hi, any plan to colorize the maven output? a good way could be a config line somewhere (settings.xml colorANSI/color for instance). It really enhances the maven experience (personally i pipe and sed the maven output

Re: Java 7 parallel classloading performance ?

2012-05-11 Thread Romain Manni-Bucau
Hi, i tried it in openejb and the gain was not visible but classloading is not an important part of our execution time. the only issue i got was potential linkageerror in some cases but that's more a jvm bug i think - Romain 2012/5/11 Olivier Lamy ol...@apache.org 2012/5/11 Kristian

Re: Java 7 parallel classloading performance ?

2012-05-21 Thread Romain Manni-Bucau
in J7 the lock is done by loaded class where it was synchronized on the classloader itself before. - Romain 2012/5/22 Jesse Glick jesse.gl...@oracle.com On 05/11/2012 04:15 AM, Kristian Rosenvold wrote: I have been considering fixing classworlds and m3 core to exploit the parallel

Re: is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread Romain Manni-Bucau
hi, you can use maven assembly plugin to create the war for instance and let maven jar plugin create the jar. Another way is to define maven war plugin and maven jar plugin then use maven build helper plugin to attach both artifacts so yes that's possible - Romain 2012/7/6 sivarenati

Re: improving incremental builds

2012-08-27 Thread Romain Manni-Bucau
Hi, The full invremental is great but not always possible (think to assembly plugin, some case xill be very hard to handle in snapshot mode i guess) Maybe it is time to get a maven daemon to help to be able to store information? - Romain Le 27 août 2012 12:24, Anders Hammar and...@hammar.net a

Re: Git as the canonical SCM

2012-09-05 Thread Romain Manni-Bucau
Im not a mvn community member but use if everyday and would like to share my thought about this thread: don't make sthg trivial hard Git is awesome for the purpose it was created. In this thread there are several issues not all linked to the scm Last note: i think the plugin you speak about

Re: [incremental build] Detect leftovers from a previous build

2012-09-06 Thread Romain Manni-Bucau
What about browsing the build tree to detect the dep modules which needs to be built (avoid a real clean which can cost really too much to make incr feature useful)? Can be done in parallel and can be pretty fast Le 6 sept. 2012 20:53, Mark Struberg strub...@yahoo.de a écrit : Hi! I had some

Re: [incremental build] Detect leftovers from a previous build

2012-09-06 Thread Romain Manni-Bucau
://cwiki.apache.org/confluence/display/MAVEN/Incremental+Builds From: Romain Manni-Bucau rmannibu...@gmail.com To: Mark Struberg strub...@yahoo.de; Maven Developers List dev@maven.apache.org Sent: Thursday, September 6, 2012 8:59 PM Subject: Re: [incremental build

Re: [incremental build] Detect leftovers from a previous build

2012-09-07 Thread Romain Manni-Bucau
You cant do it dor surefire. Tests are sometimes done by reflection and you cant ask a dep tree by test.in real world. Le 7 sept. 2012 08:37, Mark Struberg strub...@yahoo.de a écrit : I may be missing something, but if all plugins implement this logic, how it will be different from implicitly

Re: [incremental build] Detect leftovers from a previous build

2012-09-07 Thread Romain Manni-Bucau
). Of course there are cases where you like to manually re-run tests over again. For those cases we would need to introduce a 'force' flag somehow. LieGrue, strub From: Romain Manni-Bucau rmannibu...@gmail.com To: Mark Struberg strub...@yahoo.de; Maven Developers

Re: [incremental build] Detect leftovers from a previous build

2012-09-07 Thread Romain Manni-Bucau
. LieGrue, strub - Original Message - From: Romain Manni-Bucau rmannibu...@gmail.com To: Mark Struberg strub...@yahoo.de; Maven Developers List dev@maven.apache.org Cc: Sent: Friday, September 7, 2012 8:48 AM Subject: Re: [incremental build] Detect leftovers from

Re: SLF4J implementation [was Re: svn commit: r1380105 - in /maven/maven-3/trunk: ./ apache-maven/ maven-core/src/main/java/org/apache/maven/classrealm/ maven-embedder/ maven-embedder/src/main/java/or

2012-09-09 Thread Romain Manni-Bucau
I join too ;) IMO mvn doesnt need logback or slf4j at all. If you want to get rid of your log facade use juli to create a new one (as cxf or owb does). Dont mess the classpath with slf4j which has its drawbacks too Le 9 sept. 2012 21:44, Benson Margulies bimargul...@gmail.com a écrit : On Sun,

Re: SLF4J implementation [was Re: svn commit: r1380105 - in /maven/maven-3/trunk: ./ apache-maven/ maven-core/src/main/java/org/apache/maven/classrealm/ maven-embedder/ maven-embedder/src/main/java/or

2012-09-09 Thread Romain Manni-Bucau
If a plugin creates a custom classloader inheriting from the tccl you can get issues with slf4j (because of their singleton) Le 9 sept. 2012 22:20, Mark Struberg strub...@yahoo.de a écrit : nope, no problem with just slf4j api and logback. But that wont give us much benefit over just using

Re: SLF4J implementation [was Re: svn commit: r1380105 - in /maven/maven-3/trunk: ./ apache-maven/ maven-core/src/main/java/org/apache/maven/classrealm/ maven-embedder/ maven-embedder/src/main/java/or

2012-09-10 Thread Romain Manni-Bucau
framework you use will be fine no? *Romain Manni-Bucau* *Twitter: @rmannibucau* *Blog: http://rmannibucau.wordpress.com* 2012/9/10 Ralph Goers ralph.go...@dslextreme.com Sorry - I should have added - unless your facade uses LocationAwareLogger instead of the normal Logger. Ralph On Sep 10

Re: svn commit: r1384747 - in /maven/shared/trunk/maven-shared-utils/src: main/java/org/apache/maven/shared/utils/io/DirectorySnapshotScanner.java test/java/org/apache/maven/shared/utils/io/DirectoryS

2012-09-14 Thread Romain Manni-Bucau
SavePoint? Le 14 sept. 2012 20:04, Anders Hammar and...@hammar.net a écrit : Yes, Snapshot is not good. PointInTime? /Anders On Fri, Sep 14, 2012 at 3:03 PM, Mark Struberg strub...@yahoo.de wrote: Hi! If anyone has a better name for the 'DirectorySnapshotScanner' I would be happy to

Re: fixing transfer listener in trunk

2012-11-12 Thread Romain Manni-Bucau
Hi guys, Hope ill not be too off topic but why not using slf4j-jdk? It is pretty light since it relies on the jvm impl and it is already an interesting real logging framework (with handler/appender, filter, level...) Le 12 nov. 2012 16:20, Jason van Zyl ja...@tesla.io a écrit : I responded in

Re: Logging

2012-12-09 Thread Romain Manni-Bucau
Hi guys, Simple, log4j, logback...nobody cares about jdk? It is far better than simple and enough by default avoiding log4j/logback issue...then the question would rather be why slf4j since JUL is enough and can be the API as in cxf, owb etc... Le 9 déc. 2012 16:18, Jason van Zyl ja...@tesla.io a

Re: Logging

2012-12-09 Thread Romain Manni-Bucau
even if I'm a French guy (those kind of folks who usually grumble a lot :-) ), I will stop complaining (at least I can configure my local installation with my preferred mode). Cheers -- Olivier 2012/12/9 Romain Manni-Bucau rmannibu...@gmail.com: Hi guys, Simple, log4j, logback

Re: Logback in Maven Core

2012-12-10 Thread Romain Manni-Bucau
Hi, Think for everyday users (i'm part of them) it doesnt make so much difference so since the logs are the same and the impl is easier logback sounds good. Le 11 déc. 2012 08:14, Ansgar Konermann ansgar.konerm...@googlemail.com a écrit : Hi, please go for logback. I really wondered why slf4j

Re: Logging

2012-12-17 Thread Romain Manni-Bucau
+100 i really think maven is bad sentences we sometimes hear doesn't reference the logging at all so probably not something where time should be lost Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github

Re: mvn compiler 3.0 regression?

2013-01-13 Thread Romain Manni-Bucau
here it is http://jira.codehaus.org/browse/MCOMPILER-197 *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-03 Thread Romain Manni-Bucau
Hi guys, Not sure it is linked or not (i read the thread lately) but at work we use a proxy and not at home and i often have to remove _maven.repo files (both ways) to make my build work again...that's an everyday pain. Le 3 févr. 2013 21:41, Jason van Zyl ja...@tesla.io a écrit : On Feb 3,

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-03 Thread Romain Manni-Bucau
I switch my settings and the only differences are: 1) some server config (i guess that's not important) 2) (more important) proxies (host/port) i don't use mirrorOf. PS: the issue can happen with tomee trunk so repos are always available since the internet is available. *Romain Manni-Bucau

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-03 Thread Romain Manni-Bucau
well nothing special in it (host/port/protocol proxies + username/password servers). however i build company projects using enterprise project having as dependencies tomee, could it generate it? *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-03 Thread Romain Manni-Bucau
here it is https://gist.github.com/c07256a99d3b2af322eb @home i remove the settings.xml in general *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-03 Thread Romain Manni-Bucau
Usually i comment all in this one Le 4 févr. 2013 00:20, Jason van Zyl ja...@tesla.io a écrit : Just so I'm clear do you switch between this settings.xml and no settings.xml, or you just use this settings.xml all the time? On Feb 3, 2013, at 5:15 PM, Romain Manni-Bucau rmannibu...@gmail.com

Re: Pain with MNG-5181 (_maven.repositories)

2013-02-04 Thread Romain Manni-Bucau
I think my case was network issues due to an unstable (enterprise) proxy too. Le 4 févr. 2013 21:22, Robert Scholte rfscho...@apache.org a écrit : I haven't faced these issues myself, but some colleagues contacted me about it. It occurred due to an unstable proxy/network and they knew enough

Re: Fast or exact ?

2013-02-08 Thread Romain Manni-Bucau
Hi guys, do you have figures regarding size and execution time? slower/bigger doesn't speak that much to help to choose a default config ;) *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com

Re: Fast or exact ?

2013-02-11 Thread Romain Manni-Bucau
I think today we care more about time than size (it shouldn't be gigs ;) wdyt? *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github

Re: User defined plugin extension points ?

2013-04-09 Thread Romain Manni-Bucau
Doesnt each plugin needs its own handling? Maybe some event base siluyion with just a spi yo register listeners is better (like in arquillian) Le 9 avr. 2013 21:49, Baptiste MATHUS bmat...@batmat.net a écrit : +1. Would be great. I was recently thinking about this when designing an enforcer

Project.version too contextual

2013-05-23 Thread Romain Manni-Bucau
Hi guys, Project.version seems evaluated by pom and not from the pom it is defined (at least in a multi modules project without a single version). So basically you can get a version very different from the expected one. If this is the expected behavior, could it be another variable to force the

Re: Project.version too contextual

2013-05-24 Thread Romain Manni-Bucau
care Regards, Hervé [1] http://maven.apache.org/ref/3.1.0-alpha-1/maven-model-builder/ Le vendredi 24 mai 2013 06:43:35 Romain Manni-Bucau a écrit : Hi guys, Project.version seems evaluated by pom and not from the pom it is defined (at least in a multi modules project without

Re: Project.version too contextual

2013-05-24 Thread Romain Manni-Bucau
that's not possible, we use it in too much place and our project is not flat *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https

github plugin?

2013-06-03 Thread Romain Manni-Bucau
: resource copy selection. Basically here what it would be an interesting workflow: 1) git clone a branch on a repo in ${repo} 2) copy folder F or ${repo} in target/classes (copying the whole repo will make the scripting JSR - aka JSR223 - not found the scripts in general) wdyt? *Romain Manni-Bucau

Re: github plugin?

2013-06-03 Thread Romain Manni-Bucau
looks close yes, didn't know it, then playing with some file operation can work thanks *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau

Re: github plugin?

2013-06-03 Thread Romain Manni-Bucau
Awesome! Thanks again, still need to go a bit deeper but it works: https://github.com/rmannibucau/landslide-maven-plugin/blob/master/pom.xml *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com

Re: github plugin?

2013-06-03 Thread Romain Manni-Bucau
scm plugin is what i was looking for, exec plugin was not portable enough *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http://rmannibucau.wordpress.com/ *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https

Re: Maven 3.1.0 class loading error with Swagger Maven Plugin

2013-07-17 Thread Romain Manni-Bucau
Hi Got the exact same issue with another plugin. Le 18 juil. 2013 06:43, Brett Porter br...@apache.org a écrit : Hi, I've got a regression here using the Swagger Maven Plugin [1] that looks different to the Aether one. Before I go poking around further, I was wondering if anyone can tell me

Re: Maven 3.1.0 class loading error with Swagger Maven Plugin

2013-07-18 Thread Romain Manni-Bucau
I don't have it anymore on my computer (i was testing several plugins and i removed a lot of them) but looking at the code it was using ClassRealmConverter too. Hacking the plugin to remove this usage made it working in my case. Romain Manni-Bucau Twitter: @rmannibucau Blog: http

Re: Parallel classloading, need review...

2013-08-09 Thread Romain Manni-Bucau
When i tested on tomee gain was ridiculous too so maybe not the first place to hack on to make maven fast ;) Le 9 août 2013 18:36, Jason van Zyl ja...@tesla.io a écrit : And what's the net difference then before after trying to parallelize the classloading? I'll read up on the Java7

Re: Parallel classloading, need review...

2013-08-09 Thread Romain Manni-Bucau
kristian.rosenv...@gmail.com a écrit : 2013/8/9 Romain Manni-Bucau rmannibu...@gmail.com: When i tested on tomee gain was ridiculous too so maybe not the first place to hack on to make maven fast ;) Le 9 août 2013 18:36, Jason van Zyl ja...@tesla.io a écrit : And what's the net difference

alias for dependencies

2013-09-11 Thread Romain Manni-Bucau
be better here -- aliasfoo/alias /dependency It would allow: 1) to get smaller dependencies (less verbosity) 2) (this one is much more important) dynamic dependencies *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog: **http://rmannibucau.wordpress.com/*http

Re: Do releases _really_ need to be built with Java 1.5?

2013-11-11 Thread Romain Manni-Bucau
Isnt the question: is there still someone needing j5? Almost all apache projects and others moved to j6 at least Le 11 nov. 2013 23:53, John Patrick nhoj.patr...@gmail.com a écrit : i guess it's the only way to definitely ensure backwards compatibility open potential solution would be to use

Re: Plugin and Maven Metrics

2014-11-21 Thread Romain Manni-Bucau
Hi Can't it use Sirona? - not sure i fully got what you want to do but since it is Apache as well... Romain Manni-Bucau @rmannibucau http://www.tomitribe.com http://rmannibucau.wordpress.com https://github.com/rmannibucau 2014-11-21 17:43 GMT+01:00 Aldrin Leal ald...@leal.eng.br: Just

Re: Colorized console

2015-04-01 Thread Romain Manni-Bucau
I'm +1 to have color by default but wonder if associated config shouldn't be in settings.xml. Personally my mvn often looks like: http://img11.hostingpics.net/pics/867383mvn.png Romain Manni-Bucau @rmannibucau https://twitter.com/rmannibucau | Blog http://rmannibucau.wordpress.com | Github

Re: libs in mavens /lib folder

2015-03-05 Thread Romain Manni-Bucau
mentionned or just outdated API. Romain Manni-Bucau @rmannibucau https://twitter.com/rmannibucau | Blog http://rmannibucau.wordpress.com | Github https://github.com/rmannibucau | LinkedIn https://www.linkedin.com/in/rmannibucau | Tomitriber http://www.tomitribe.com 2015-03-05 16:38 GMT+01:00

Re: libs in mavens /lib folder

2015-03-05 Thread Romain Manni-Bucau
Hmm, will test soon but seems the imports are not complete, it misses: javax.decorator, javax.inject, javax.annotation and the whole javax.enterprise AFAIK Romain Manni-Bucau @rmannibucau https://twitter.com/rmannibucau | Blog http://rmannibucau.wordpress.com | Github https://github.com

Re: libs in mavens /lib folder

2015-03-05 Thread Romain Manni-Bucau
Hi +1, javax.* are quite impacting since they break quite easily (and randomly) all plugins relying on it. Romain Manni-Bucau @rmannibucau https://twitter.com/rmannibucau | Blog http://rmannibucau.wordpress.com | Github https://github.com/rmannibucau | LinkedIn https://www.linkedin.com

controlling surefire execution just with a set of runners

2015-06-18 Thread Romain Manni-Bucau
. In a more hardcoded way (ie only for arquillian and other) I wrote this surefire child mojo: https://gist.github.com/rmannibucau/cd6afae1d8a100067981 It uses asm to detect the runner. Code could for sure be enhanced and simplified hacking in surefire itself but it is functional. wdyt? Romain Manni

Re: controlling surefire execution just with a set of runners

2015-06-18 Thread Romain Manni-Bucau
That is the point. If not built in it has almost no value compared to groups since i doubt you ll write a plugin to a mvn plugin in your project - needs to be seriously generic for your business to do it IMO. That said there are open doors for tests filtering for surefire without relying on the

Re: controlling surefire execution just with a set of runners

2015-06-18 Thread Romain Manni-Bucau
Surely groovy is the way to go, i agree Le 18 juin 2015 21:42, Tibor Digana tibordig...@apache.org a écrit : There are plenty of requests like streaming classes from socket into the plugin and executing system properties in execution like you proposed different test set or using class loader

Re: .jar is installed as .war

2015-12-19 Thread Romain Manni-Bucau
Hi Olivier Why not using standard war plugin for that: https://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#attachClasses Le 19 déc. 2015 12:49, "Oliver B. Fischer" a écrit : > Hi, > > my project is build as war but I need also a jar of the classes. Therefore >

Re: colorized Maven output

2016-06-06 Thread Romain Manni-Bucau
what is shown and not only the level ? Anyway thanks for moving forward this feature expected for too long by a LOT of users! Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau>

Re: [jira] [Closed] (MWAR-350) Add Skip Parameter to Skip the process

2016-01-25 Thread Romain Manni-Bucau
2016-01-25 21:39 GMT+01:00 Robert Scholte <rfscho...@apache.org>: > Op Mon, 25 Jan 2016 21:05:58 +0100 schreef Romain Manni-Bucau < > rmannibu...@gmail.com>: > > Nothing prevents to build 2 or more wars with slightly different resources. >> Being ab

Re: [jira] [Closed] (MWAR-350) Add Skip Parameter to Skip the process

2016-01-25 Thread Romain Manni-Bucau
Nothing prevents to build 2 or more wars with slightly different resources. Being able to skip one would be useful. Le 25 janv. 2016 20:58, "Robert Scholte" a écrit : > Op Mon, 25 Jan 2016 20:55:09 +0100 schreef jieryn : > > UAT module which is war for

Why no mvn daemon?

2016-03-03 Thread Romain Manni-Bucau
iguration is the sae (dependencies). Last thing missing in my description is two more configurations: a -Dxxx to kill the daemon and one to skip it for one build. Any technical/politics reason I miss to not have it? Romain Manni-Bucau @rmannibucau <https://twitter.com/rma

Re: Why no mvn daemon?

2016-03-03 Thread Romain Manni-Bucau
Good catch but something not changing user shell would be great and part of maven distribution would be awesome. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau>

Re: A Maven plugin to power up your Maven builds with custom java code

2016-05-08 Thread Romain Manni-Bucau
Hi all I love that. Only missing thing to kill gradle in my use cases is a full control on plugin order from the pom and not rely on easy to break convention - a change in a parent can do today. Le 8 mai 2016 15:40, "Hervé BOUTEMY" a écrit : > Hi FX, > > Interesting for

Re: A Maven plugin to power up your Maven builds with custom java code

2016-05-08 Thread Romain Manni-Bucau
Well having it working ootb everywhere - including ideS - is a must and why polyglot maven didnt get as must market as it should IMHO. Also being able to order in the pom itself execution by reference would solve a lot of headaches. Le 8 mai 2016 17:04, "Jason van Zyl" a écrit :

Re: A Maven plugin to power up your Maven builds with custom java code

2016-05-08 Thread Romain Manni-Bucau
build makes any of custom doc+build possible which is more and more common - workaround is mvn exec today but miss its build scope. Of course custom mojo are always possible but a lot of effort for nothing in final artifacts when not a big company. Just my 2cts > > On May 8, 2016, at 12:43 P

Re: colored console

2016-09-12 Thread Romain Manni-Bucau
s for colors instead of unix \[\033[01;34m\] etc. This needs a default global config based on level I think customizable per plugin (=overridable for some lines, maybe through a MDC to give the key to read?). > On Sat, Sep 10, 2016 at 1:29 PM, Romain Manni-Bucau <rmannibu...@gmail.com &

Re: colored console

2016-09-10 Thread Romain Manni-Bucau
be cause instead of helping the user making outputs more readable you decrease the readability. That is my feedback with current colors and why i forked the binder ATM. > Regards, > > Hervé > > > > > On Fri, Sep 9, 2016 at 10:06 AM, Romain Manni-Bucau < rmannibu...@gmail.co

Re: colored console

2016-09-08 Thread Romain Manni-Bucau
Color is a user thing not a build thing so belongs to .m2 not I think. Le 9 sept. 2016 00:18, "Gary Gregory" <garydgreg...@gmail.com> a écrit : > On Thu, Sep 8, 2016 at 2:48 PM, Romain Manni-Bucau <rmannibu...@gmail.com> > wrote: > > > +1 to remove th

Re: colored console

2016-09-08 Thread Romain Manni-Bucau
sending the picture in attachment.. > > On Thu, Sep 8, 2016 at 11:32 PM, Romain Manni-Bucau [via Maven] < > ml-node+s40175n5880220...@n5.nabble.com> wrote: > > > Hello Tibor, > > > > not sure that's me but I don't see the picture > > > > that said I like thi

Re: colored console

2016-09-08 Thread Romain Manni-Bucau
Hello Tibor, not sure that's me but I don't see the picture that said I like this kind of coloring for maven: https://raw.githubusercontent.com/rmannibucau/maven-color/master/screenshot.png . Makes it easy to identify steps and warn/error (in red) visually Romain Manni-Bucau @rmannibucau

Re: colored console

2016-09-08 Thread Romain Manni-Bucau
interface what you really want to customize > because everybody has some imagination so I want you to be more concrete. > Probably before logging needs often and actual config so a just in case config but not user oriented. > On Fri, Sep 9, 2016 at 12:20 AM, Romain Manni-Bucau <rmannibu...

Re: colored console

2016-09-09 Thread Romain Manni-Bucau
n the home and working so would be ok too > On Fri, Sep 9, 2016 at 12:20 AM, Romain Manni-Bucau <rmannibu...@gmail.com > > > wrote: > > > Color is a user thing not a build thing so belongs to .m2 not > > I think. > > > > Le 9 sept. 2016 00:18, "Gary Gre

Re: colored console

2016-09-09 Thread Romain Manni-Bucau
eta)? this way you can customize it programmatically locally pretty easily keeping a default in maven "core". > On Fri, Sep 9, 2016 at 10:06 AM, Romain Manni-Bucau <rmannibu...@gmail.com > > > wrote: > > > 2016-09-09 7:45 GMT+02:00 Tibor Digana <tibor.dig...@goo

upgrade maven plugin to run with asm 6?

2016-10-10 Thread Romain Manni-Bucau
building using asm 6 instead of preventing them to run their build and the later upgrade would be smooth. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpress.com&g

Re: Maven war plugin 3.x: can it finally include MWAR-262?

2016-08-23 Thread Romain Manni-Bucau
Le 23 août 2016 22:08, "Karl Heinz Marbaise" <khmarba...@gmx.de> a écrit : > > Hi Romains, > > > On 23/08/16 09:56, Romain Manni-Bucau wrote: >> >> Hi guys, >> >> just saw m-w-p 3.0.0 vote was on the list without >> https://issues.apache

Re: [VOTE] Release Apache Maven WAR Plugin version 3.0.0

2016-08-23 Thread Romain Manni-Bucau
Le 23 août 2016 22:10, "Karl Heinz Marbaise" <khmarba...@gmx.de> a écrit : > > Hi Romain, > > > On 23/08/16 10:22, Romain Manni-Bucau wrote: >> >> +1, created another thread about this one (title: "Maven war plugin 3.x: >> can it fin

Maven war plugin 3.x: can it finally include MWAR-262?

2016-08-23 Thread Romain Manni-Bucau
-close it which more or less leads to ignoring it)? Personally I don't see any issue having it fixed for 3.0.1. wdyt? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog <http://rmannibucau.wordpres

Re: [VOTE] Release Apache Maven WAR Plugin version 3.0.0

2016-08-23 Thread Romain Manni-Bucau
nd it is very painful to do it for each project. Also imply to not only change m-w-p but also the version by default to inherit of it automatically (not sure where this should be reported in term of JIRA). Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> |

RE: upgrade maven plugin to run with asm 6?

2016-10-10 Thread Romain Manni-Bucau
, > > openjpa, cxf, openwebbeans, batchee, tomee itself and probably a few I > > forget) and most of them have maven plugins and would break. > > > > It fails with a NPE in Type.getProxyClass IIRC so maven annotation scanner > > doesn't work on java 9. > MG>JDK 1.

Re: upgrade maven plugin to run with asm 6?

2016-10-10 Thread Romain Manni-Bucau
ion was broken but I'm very concerned cause soon we'll upgrade the whole tomee stack to asm 6 (xbean, openjpa, cxf, openwebbeans, batchee, tomee itself and probably a few I forget) and most of them have maven plugins and would break. It fails with a NPE in Type.getProxyClass IIRC so maven annotati

follow up on SUREFIRE-1340

2017-07-10 Thread Romain Manni-Bucau
ogress bar to give some inputs to the user through the console on where we are. EE TCK often do it through a testng listener but it is really lacking with a plain surefire setup. Any hope it gets enhanced? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Bl

Re: [PROBLEM] Java 9 ClassLoader and trying to load module java.se.se

2017-05-06 Thread Romain Manni-Bucau
for the deprecated jaxb typically for instance. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://blog-rmannibucau.rhcloud.com> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.c

Re: Maven 4.0.0

2017-11-13 Thread Romain Manni-Bucau
-integration/src/build/StudioDependencies.groovy#L27 (which transitive deps support but it is not that hard to add). Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-11-13 11:11 GMT+01:00 Jörg Schaible <joerg.schai...@bpm-inspire.com>: > Hi Romain, > > Am T

beam leaving maven, anything doable?

2017-11-27 Thread Romain Manni-Bucau
/6d6f7ffc66622db1dd459e1704c3a5d8a4bc29c2d9c0b60354fd3b6a@%3Cdev.beam.apache.org%3E Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e

Re: beam leaving maven, anything doable?

2017-11-27 Thread Romain Manni-Bucau
Even doing it the difference is significative. The parallelism and graph computation (linked to the local repo thread safety) is the main drawback of maven it seems. Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-11-27 20:47 GMT+01:00 Michael Osipov <mi

Re: beam leaving maven, anything doable?

2017-11-27 Thread Romain Manni-Bucau
e bit /2 - for most other people - the build time which is significant (it is not a commmons project you can build in less than 5mn ;)). With so much difference I strongly think there are room for improvement but fail to see how maven graph computation can look that bad :(. Manfred Romain Manni-

Re: beam leaving maven, anything doable?

2017-11-27 Thread Romain Manni-Bucau
isualizing that graph and the effective time on each build step is the > first thing to do before trying to change anything > It's on my TODO list for a long time: having some common work on it would help > > Regards, > > Hervé > > Le mardi 28 novembre 2017, 07:04:04 CET Romain M

Re: beam leaving maven, anything doable?

2017-11-27 Thread Romain Manni-Bucau
, 2017, at 03:28 PM, Michael Osipov wrote: > > I really would like to see the same numbers with Takari Smart Builder > > and thread-safe local repo module. > > > > Am 2017-11-27 um 20:52 schrieb Romain Manni-Bucau: > > > Even doing it the difference is significat

Re: Dynamically modifying MavenProject.getModel() so that sub-sequent lifecycle phases can pick up those changes

2017-12-18 Thread Romain Manni-Bucau
Hi Did you try writing an extension instead of a mojo? It does exactly that (+ few other things) Le 18 déc. 2017 19:03, "Quijada, Jose M" a écrit : > I would like to write a Maven plugin that among other things manipulates > (both add/update) the POM model available

Better incremental build in default distro?

2017-11-03 Thread Romain Manni-Bucau
more incremental and smooth for these big projects? Thanks, Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail: dev-h

Re: Maven 4.0.0

2017-11-04 Thread Romain Manni-Bucau
2017-11-04 18:17 GMT+01:00 Stephen Connolly <stephen.alan.conno...@gmail.com>: > On Sat 4 Nov 2017 at 17:11, Romain Manni-Bucau <rmannibu...@gmail.com> > wrote: > >> My wishlist as a user would be: >> >> - incremental build (based on scm is fine) >

Re: Maven 4.0.0

2017-11-04 Thread Romain Manni-Bucau
My wishlist as a user would be: - incremental build (based on scm is fine) - some built in scripting (groovy based?) - plugin sorting from the pom (current rules are deterministic but too hard to use so defining a dependency between two executions in the same phase would be very handy -

Re: Maven 4.0.0

2017-11-06 Thread Romain Manni-Bucau
ould be helpful. IMO it is enough to log it with the module name: [INFO] [INFO] Building Foo 1.0.0-SNAPSHOT [INFO] [INFO] Module 10 / 100 Romain Manni-Bucau

Re: Maven 4.0.0

2017-11-06 Thread Romain Manni-Bucau
indeed: https://issues.apache.org/jira/browse/MNG-6302 Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-11-06 9:37 GMT+01:00 Stephen Connolly <stephen.alan.conno...@gmail.com>: > On Mon 6 Nov 2017 at 08:13, Romain Manni-Bucau <rmannibu...@gmail.

Re: Maven 4.0.0

2017-11-06 Thread Romain Manni-Bucau
happy to > roll a 3.5.3 > > Do you want to take a stab at it? > > (only complexity might be parallel execution, but we could just report the > linear plan number and when in parallel also log how many have completed) > > On 6 November 2017 at 00:51, Romain Manni-Bucau <rmannibu

Re: Maven 4.0.0

2017-11-09 Thread Romain Manni-Bucau
FYI opened https://github.com/apache/maven/pull/136 for the MNG-6302 (guess we can switch from thread to discuss it now?) Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-11-09 9:30 GMT+01:00 Jörg Schaible <joerg.schai...@bpm-inspire.com>: > Hi, > > o

Re: Maven 4.0.0

2017-11-08 Thread Romain Manni-Bucau
Another good feedback from beam (they did a PoC using gradle and are signigicantly faster with gradle): being able to parallelize some plugins (like checkstyle/findbugs/pmd) can be beneficial to the overall soft. Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-11-06

Re: [VOTE] Release Apache Maven 3.5.4

2018-06-18 Thread Romain Manni-Bucau
+1 tested on my projects and mojo and all is green :) Le mar. 19 juin 2018 07:01, Karl Heinz Marbaise a écrit : > Hi, > > here is my +1 > > Tested on several projects without any issue... > > Kind regards > Karl Heinz Marbaise > On 17/06/18 22:44, Stephen Connolly wrote: > > Hi, > > > > We

cdi-api leaking?

2018-01-19 Thread Romain Manni-Bucau
Hi guys, cdi-api is still in maven lib and breaks any plugin using it since it is an old version, can it be dropped or at least isolated from plugin classloaders? Thanks, Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://rmannibucau.metawerx.net/>

parallelise not overlapping tasks

2018-01-19 Thread Romain Manni-Bucau
... ... ... ... ... ... ... ... anything to enhance it? Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://rmannibucau.metawerx.net/> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibuc

Re: parallelise not overlapping tasks

2018-01-19 Thread Romain Manni-Bucau
for modules having frontend-maven-plugin + standard java in the same module etc... would be very beneficial if we can have something working with maven. Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://rmannibucau.metawerx.net/> | Ol

Re: cdi-api leaking?

2018-02-03 Thread Romain Manni-Bucau
Up? Le 19 janv. 2018 13:18, "Romain Manni-Bucau" <rmannibu...@gmail.com> a écrit : > Hi guys, > > cdi-api is still in maven lib and breaks any plugin using it since it is > an old version, can it be dropped or at least isolated from plugin > classloaders? &

Re: cdi-api leaking?

2018-02-06 Thread Romain Manni-Bucau
commented inline Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <https://rmannibucau.metawerx.net/> | Old Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in

  1   2   3   4   5   6   7   8   9   10   >