Re: How to make sure all System.out and System.err are printed when using maven?

2006-04-13 Thread Ken Weiner
All the output for stdout and stderr is directed to a test report file in target/test-reports. If you want the output to go to the console, you just need to run the tests with a system param as follows: maven -Dmaven.junit.usefile=false test The docs for this are here: http://maven.apache.org/ma

Re: Plugin support for Hibernate 3.0

2005-08-04 Thread Ken Weiner
+1 for continued development of the hibernate plugin in M2. On 8/4/05, Brett Porter <[EMAIL PROTECTED]> wrote: > That said, it has been brought across to to Maven2 and so we could > continue development if there is demand and ad hibernate 3.0 features. > Is anyone interested? > > - Brett ---

Re: [m2] Behavior of transitive dependencies

2005-08-04 Thread Ken Weiner
Thanks for the reply, Brett. I suspected that the issue was within dom4j's POM, and I'd like to help clean it up by submitting issues to MEV in JIRA. However, I am not sure what the appropriate corrections would be. Should the jars inside the dom4j POM be declared with a particular scope that wou

[m2] Behavior of transitive dependencies

2005-08-03 Thread Ken Weiner
I am new to Maven 2 and am trying to understand currently, in alpha 3, how transitive dependencies are supposed to be working. If I want to include something like dom4j-1.6.jar, but none of the dom4j dependencies, in my project, how would I specify this in the pom? I tried the following, and sinc