Re: clojure maven plugin starts a server when compiling

2013-07-29 Thread Horace
Thank you Plinio, this is a good workaround to the test that hangs. Bye . Horace Am Donnerstag, 25. Juli 2013 17:41:29 UTC+2 schrieb Plinio Balduino: > > try > > mvn compile -Dmaven.test.skip=true > > On Thu, Jul 25, 2013 at 12:24 PM, Horace > > > wrote: > > I am using the clojure maven plu

Re: clojure maven plugin starts a server when compiling

2013-07-25 Thread PlĂ­nio Balduino
try mvn compile -Dmaven.test.skip=true On Thu, Jul 25, 2013 at 12:24 PM, Horace wrote: > I am using the clojure maven plugin to build a project. The projects > contains a test, let us mytest.clj, that looks like the following: > > (def ^:dynamic *server* > (create-server "tcp://bla.bla:"))

clojure maven plugin starts a server when compiling

2013-07-25 Thread Horace
I am using the clojure maven plugin to build a project. The projects contains a test, let us *mytest.clj*, that looks like the following: (def ^:dynamic *server* (create-server "tcp://bla.bla:")) (deftest1...)(deftest2...) If I run mvn clojure:compile or *mvn clojure:test* , the build r