On Sunday, 26 April 2015 at 17:34, Jason van Zyl wrote: > Did you create an issue in JIRA, I still don't know exactly what the problem > is. > >
AFAICT the underlying issue is that the MAVEN_OPTS setting can be reset when the mvn script sources .mavenrc Before 3.3.x the mvnDebug script was a tweaked copy of mvn so this didn’t make any difference to debugging as MAVEN_DEBUG_OPTS was still referenced in the final command. For 3.3.x onwards the mvnDebug script sets MAVEN_OPTS to “$MAVEN_OPTS $MAVEN_DEBUG_OPTS” and then invokes the mvn script... which means that if MAVEN_OPTS is subsequently reset by .mavenrc in the mvn script then the debug settings are lost. You can recreate this by simply adding MAVEN_OPTS=“-showversion” to your .mavenrc One fix could be to source /etc/mavenrc and .mavenrc early on in mvnDebug (as done in the mvn script) and then set MAVEN_SKIP_RC=1 when invoking mvn with the combined MAVEN_OPT setting. This should stop it getting reset in the mvn script and allow the debug settings to pass through. > > On Apr 26, 2015, at 2:12 AM, Mark Struberg <[email protected] > (mailto:[email protected])> wrote: > > > +1 > > > > The problem I have with mvnDebug on OSX cmd line seems to be there in older > > 3.3.x versions already. So 3.3.3 is at least better than 3.3.2. We should > > really fix this in the next version. But otherwise the release looks good. > > > > LieGrue, > > strub > > > > > > > Am 25.04.2015 um 23:45 schrieb Mark Derricutt <[email protected] > > > (mailto:[email protected])>: > > > > > > On 26 Apr 2015, at 9:23, Jason van Zyl wrote: > > > > > > > Great, thanks for testing Mirko. > > > > > > Not seeing any binding votes? > > > > > > -- > > > Mark Derricutt > > > http://www.theoryinpractice.net > > > http://www.chaliceofblood.net > > > http://plus.google.com/+MarkDerricutt > > > http://twitter.com/talios > > > http://facebook.com/mderricutt > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > (mailto:[email protected]) > > For additional commands, e-mail: [email protected] > > (mailto:[email protected]) > > > > > Thanks, > > Jason > > ---------------------------------------------------------- > Jason van Zyl > Founder, Takari and Apache Maven > http://twitter.com/jvanzyl > http://twitter.com/takari_io > --------------------------------------------------------- > > We know what we are, but know not what we may be. > > -- Shakespeare > > > > > > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > (mailto:[email protected]) > For additional commands, e-mail: [email protected] > (mailto:[email protected]) > >
