Re: settings.xml file on multiple build slave?

2013-09-13 Thread Olivier Lamy
Hi Have a look at this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Config+File+Provider+Plugin I'm pretty this can help you. Cheers On 13 September 2013 07:32, motes motes wrote: > I have a Jenkins master/slave setup. Currently I have 23 slaves that can > potentially run a maven build.

RE: list of available properties

2013-09-13 Thread Manfred Moser
> http://mojo.codehaus.org/properties-maven-plugin/usage.html > > execute read-project-properties goal of properties-maven-plugin > bind to 'initialize' phase Thats one of those plugins that has been useful but has a version number that reflects badly on it. Could someone just release a 1.0 and g

Re: settings.xml file on multiple build slave?

2013-09-13 Thread Aldrin Leal
I believe there are several Jenkins Plugins which allow you to do that: https://wiki.jenkins-ci.org/display/JENKINS/Plugins Two that caught my attention: Copy To Slave, Config File Provider -- -- Aldrin Leal, Master your EC2-fu! Get the latest ekaterminal public beta http://www.ingenieux.com.br

Re: How can I compile all .thrift files (*.thrift) as a Maven phase?

2013-09-13 Thread Andrew Pennebaker
When I use an asterisk (*) in arg, Maven complains: [INFO] --- maven-antrun-plugin:1.3:run (generate-sources) @ sigacts --- [INFO] Executing tasks [exec] [exec] [FAILURE:arguments:1] Could not open input file with realpath: src/main/thrift/*.thrift [exec] Result: 1 On Thu, Sep 12,

Re: list of available properties

2013-09-13 Thread Stephen Connolly
I think some of it's goals are questionable from a “best practice” point of view. Certainly read-project-properties and set-system-properties should come with health warnings as they can have very visible edge cases: * The properties they introduce all apply after a good chunk of the model has bee

Re: How can I compile all .thrift files (*.thrift) as a Maven phase?

2013-09-13 Thread Jeff MAURY
You should use an ant fileset in your ant script instead of a file Jeff — Sent from Mailbox for iPhone On Fri, Sep 13, 2013 at 6:10 PM, Andrew Pennebaker wrote: > When I use an asterisk (*) in arg, Maven complains: > [INFO] --- maven-antrun-plugin:1.3:run (generate-sources) @ sigacts --- >

Re: How can I compile all .thrift files (*.thrift) as a Maven phase?

2013-09-13 Thread Andrew Pennebaker
Roger roger, works for me! On Fri, Sep 13, 2013 at 12:57 PM, Jeff MAURY wrote: > You should use an ant fileset in your ant script instead of a file > > > > > Jeff > > — > Sent from Mailbox for iPhone > > On Fri, Sep 13, 2013 at 6:10 PM, Andrew Pennebaker > wrote: > > > When I use an asterisk (

Maven bootstrap/surefire:test performance

2013-09-13 Thread Mirko Friedenhagen
Hello everybody, I use Netbeans 7.4 as IDE and mostly like how it uses Maven to get stuff done. While it is nice that I do not encounter problems as I did with Eclipse when dealing with dependency scoping I am slowed down when running single test files or methods. Netbeans invokes "test-compile su

Re: Maven bootstrap/surefire:test performance

2013-09-13 Thread Milos Kleint
with Compile on Save enabled, the test-compile phase should be skipped and only surefire:test should be executed. However even with that, there's overhead of jvm startup + maven startup before the mojo gets executed. Obviously the overhead is biggest when you run just a single test. Unfortunately

Re: Maven bootstrap/surefire:test performance

2013-09-13 Thread Mark Eggers
On 9/13/2013 12:38 PM, Milos Kleint wrote: with Compile on Save enabled, the test-compile phase should be skipped and only surefire:test should be executed. However even with that, there's overhead of jvm startup + maven startup before the mojo gets executed. Obviously the overhead is biggest wh

Re: Maven bootstrap/surefire:test performance

2013-09-13 Thread Milos Kleint
On Fri, Sep 13, 2013 at 9:47 PM, Mark Eggers wrote: > On 9/13/2013 12:38 PM, Milos Kleint wrote: > >> with Compile on Save enabled, the test-compile phase should be skipped and >> only surefire:test should be executed. >> >> However even with that, there's overhead of jvm startup + maven startup

Issue with exec-tests while running mvn test from eclipse

2013-09-13 Thread person1999
Hello Everyone, I had this issue with Maven , it worked all well yesterday, but today I got this message error [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:exec (exec-tests) on project rest-testing: Command execution failed. Cannot run program "mvn" (in directory "C:\U

RE: Issue with exec-tests while running mvn test from eclipse

2013-09-13 Thread Martin Gainty
samia ne peut pas trouver le fichier bon chance, Martin Gainty __ Note de déni et de confidentialité Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire info

Re: list of available properties

2013-09-13 Thread Manfred Moser
> I think some of it's goals are questionable from a “best practice” point > of > view. Certainly read-project-properties and set-system-properties should > come with health warnings as they can have very visible edge cases: > ... > The plugin is helpful... but usually only when you are dealing wi