Improving the speed of ‘deploy’ ?

2014-09-12 Thread Kevin Burton
mvn package” on my code , without tests, is actually pretty fast. Takes about one minute. (I don’t need the tests btw as I’m using continuous integration and the code is already tested). One minute is pretty darn good… The problem is that ‘deploy’ takes about 7 minutes. That’s kind of not

Re: Improving the speed of ‘deploy’ ?

2014-09-12 Thread Curtis Rueden
Hi Kevin, I think the issue is that I”m using scpexe for my distributionManagement repository. Is there some reason you can't just use wagon-ssh? http://stackoverflow.com/a/14404990 Regards, Curtis On Fri, Sep 12, 2014 at 1:11 PM, Kevin Burton bur...@spinn3r.com wrote: mvn package” on my

Re: Improving the speed of ‘deploy’ ?

2014-09-12 Thread Manfred Moser
What about using https .. does that compare in speed or is it faster? If faster.. why not use it? manfred Curtis Rueden wrote on 12.09.2014 11:31: Hi Kevin, I think the issue is that I”m using scpexe for my distributionManagement repository. Is there some reason you can't just use

Re: Improving the speed of ‘deploy’ ?

2014-09-12 Thread Kevin Burton
Worth a shot.. I’m using scpexe which forks OpenSSH as it’s easier to use when I forward SSH auth… this way I’m not constantly entering passwords for machines I’ve already authenticated to... On Fri, Sep 12, 2014 at 11:31 AM, Curtis Rueden ctrue...@wisc.edu wrote: Hi Kevin, I think the