Re: reordering the lifecycle

2011-04-29 Thread Ron Wheeler
On 28/04/2011 5:35 PM, Justin Lee wrote: I have a huge tree of ant based projects i'm trying to convert to maven. I have the mechanics worked about except for a minor hitch: I need the test phase to be the last one executed. Since all of this code is test code there will be no artifacts to

Re: maven-assembly-plugin StackOverflowError

2011-04-29 Thread kueblboe
Hello, did you ever resolve this issue? I ran into the same problem using poi 3.7 and maven-assembly-plugin 2.2.1. Cheers, Manuel-- View this message in context: http://maven.40175.n5.nabble.com/maven-assembly-plugin-StackOverflowError-tp3321403p4358228.html Sent from the Maven - Users mailing

Logistic Regression

2011-04-29 Thread Benson Margulies
With some help from Ted (which I plan to turn into a checked-in tool if he doesn't get there first), I'm running LR on my initial small example. I adapted Ted's rcv1 sample to digest a directory containing subdirectories containing exemplars. Ted's delightfully small program pushes all of the

Re: Logistic Regression

2011-04-29 Thread Benson Margulies
This went to the wrong list. Apologies. On Fri, Apr 29, 2011 at 7:30 AM, Benson Margulies bimargul...@gmail.com wrote: With some help from Ted (which I plan to turn into a checked-in tool if he doesn't get there first), I'm running LR on my initial small example. I adapted Ted's rcv1 sample

Re: Logistic Regression

2011-04-29 Thread Anders Hammar
Re-reading your mail a few times I seriously hope that this was posted to the wrong list, as I don't understand anything...? /Anders On Fri, Apr 29, 2011 at 13:30, Benson Margulies bimargul...@gmail.comwrote: With some help from Ted (which I plan to turn into a checked-in tool if he doesn't

Re: Building a -classpath for a plugin, from the inside?

2011-04-29 Thread Ryan Connolly
Owen: I think my previous reply got it half right: /** * @parameter expression=${plugin.artifacts} * @required * @readonly */ private ListArtifact pluginArtifacts; StringBuilder sb = new StringBuilder(); for (Artifact dep : pluginArtifacts) {

Re: Logistic Regression

2011-04-29 Thread Benson Margulies
Anders, I did send a message along afterwards apologizing. Did that not get through? Too many apache projects start with 'm'. --benson On Fri, Apr 29, 2011 at 7:37 AM, Anders Hammar and...@hammar.net wrote: Re-reading your mail a few times I seriously hope that this was posted to the wrong

Re: Building a -classpath for a plugin, from the inside?

2011-04-29 Thread Jörg Schaible
Owen Jacobson wrote: Hi folks, I'm working on upgrading a Maven plugin that runs Apache DS[0] to use the latest version of their software. Unfortunately, the latest version of their software does something slightly slack-jawed on startup: it inspects the java.class.path system property to

Re: Logistic Regression

2011-04-29 Thread Wayne Fay
I did send a message along afterwards apologizing. Did that not get through? I got it and assume everyone else did too. Too many apache projects start with 'm'. Simply to satisfy my curiousity, which project that starts with m were you talking about in your original email? ;-) Wayne

Re: Logistic Regression

2011-04-29 Thread Wendy Smoak
On Fri, Apr 29, 2011 at 4:44 PM, Wayne Fay wayne...@gmail.com wrote: I did send a message along afterwards apologizing. Did that not get through? I got it and assume everyone else did too. Too many apache projects start with 'm'. Simply to satisfy my curiousity, which project that starts

Re: Logistic Regression

2011-04-29 Thread Benson Margulies
Wendy got it in one. Mahout, Maven, Mojo, M2E. One slight slip of the fingers and the wrong one ends up in the gmail to box. On Fri, Apr 29, 2011 at 5:06 PM, Wendy Smoak wsm...@gmail.com wrote: On Fri, Apr 29, 2011 at 4:44 PM, Wayne Fay wayne...@gmail.com wrote: I did send a message along

Fwd: Problem resolving snapshot version of plugin thru a Mirror

2011-04-29 Thread matias urbieta
Hi, i have been facing a problem when resolving snaphot version of plugin thru a mirror. It works well when there is no mirror. I have configured in my setting.xml repositories pointing out our Artifactory server and also a mirror pointing out to the same server to capture any request. In my

Installed local dependency compiles in maven, but resulting jar errors with NoClassDefFound on execution

2011-04-29 Thread Laura Bickle
The code imports classes from a compiled jar file. It can't access these classes even though I've installed the jar file in my local repository, listed it as a dependency in my pom.xml file, and it compiles happily. I've tried changing plugins and configuration based on advice in the archive,

Re: Installed local dependency compiles in maven, but resulting jar errors with NoClassDefFound on execution

2011-04-29 Thread Benson Margulies
Listing things in your pom has no effect on the jar file that comes out at the end. If you want to build a self-contained jar, you need to read up on the maven-shade-plugin or the appassembler. On Fri, Apr 29, 2011 at 8:02 PM, Laura Bickle bickle.la...@gmail.com wrote: The code imports classes