Re: Disable colored output

2012-03-05 Thread Stuart Sierra
Sorry, I am not actively working on Lazytest right now. I suggest patching your local version, or just ignoring it. -S On Monday, February 27, 2012 11:35:10 PM UTC-5, Vladimir Matveev wrote: > > > mvn goalname -Dinsert.property.here=true > I tried this and it didn't work. > > > AFAICT, the laz

Re: Disable colored output

2012-02-29 Thread Vladimir Matveev
> mvn goalname -Dinsert.property.here=true I tried this and it didn't work. > AFAICT, the lazytest maven plugin launches tests in a separate JVM: So I think the only way to overcome this is to make the plugin understand new configuration option. On Feb 27, 3:17 pm, Rob Lally wrote: > I'm reason

Re: Disable colored output

2012-02-27 Thread Laurent PETIT
AFAICT, the lazytest maven plugin launches tests in a separate JVM: https://github.com/stuartsierra/lazytest/blob/master/modules/lazytest-maven-plugin/src/main/java/com/stuartsierra/lazytest/AbstractLazytestMojo.java#L190 and only propages System environment variables: https://github.com/stuartsie

Re: Disable colored output

2012-02-27 Thread Rob Lally
I'm reasonably sure that with maven you can pass system properties using the form mvn goalname -Dinsert.property.here=true R. On 27 Feb 2012, at 17:54, Vladimir Matveev wrote: > Thank you again, I will try to look harder for it. > > On Feb 27, 5:46 pm, Stuart Sierra wrote: >> Sorry,

Re: Disable colored output

2012-02-27 Thread Vladimir Matveev
Thank you again, I will try to look harder for it. On Feb 27, 5:46 pm, Stuart Sierra wrote: > Sorry, Vladimir, I don't have an answer for you right now. I'm sure there's > a way to set system properties in Maven, but I don't have the relevant > documentation at hand. > > -S -- You received this

Re: Disable colored output

2012-02-27 Thread Stuart Sierra
Sorry, Vladimir, I don't have an answer for you right now. I'm sure there's a way to set system properties in Maven, but I don't have the relevant documentation at hand. -S -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

Re: Disable colored output

2012-02-27 Thread Vladimir Matveev
Hi Stuart, Thank you for your answer. It seems that it isn't possible to specify properties when using maven. I tried specifying property in my pom.xml in section and setting property on the command line - it's no good, the output is still colorized. Shouldn't maven plugin have an option for suc