Re: Too many open files during surefire test

2008-06-21 Thread Kathryn Huxtable
Getting closer. If I do mvn surefire:test Everything works fine. If I do mvn test I get the too many open files message. I get this even if I set forkMode to never. I still think this is a spurious bug in Maven and not in the code I'm working on, simply because the error

Re: Too many open files during surefire test

2008-06-21 Thread Kathryn Huxtable
Okay, I'm eating my words. Using lsof reveals about 10,000 open handles on my XSD file. I don't know why we don't see this in production. No one has reported it and this code has been out there for a year and a half or so. Thanks all, -K On Jun 21, 2008, at 3:15 AM, Kathryn Huxtable

Location for maven projects..

2008-06-21 Thread Niranjan Deshpande
trying out the hello world project in the maven-sonatype book I want to create a project in the location c:\users\niranjan\.m2\repositry\com.sonatype.maven.ch03\simple instead of c:\users\niranjan\simple ran this mvn archetype:create -DgroupId=com.sonatype.maven.ch03 -DartifactId=simple

Maven Dashboard Plugin download broken ?

2008-06-21 Thread Mac-Systems
Hello, i get following Error with that Configuratiuon of the Plugin and Repo : pluginRepository idCodehaus Snapshots/id urlhttp://snapshots.repository.codehaus.org//url /pluginRepository plugin

Re: changelog problem

2008-06-21 Thread Dennis Lundberg
Did you try FAQ number 4: How can I debug the SCM command? http://maven.apache.org/plugins/maven-changelog-plugin/faq.html#How%20can%20I%20debug%20the%20SCM%20command Patrick Kwok wrote: Hi, I have been trying to build a Maven site for some of our modules by running mvn site, and the build

Re: PMD/Checkstyle plugins.

2008-06-21 Thread Dennis Lundberg
Niranjan Deshpande wrote: where do the generated reports of the pmd/checkstyle go? I am using my own ruleset for both. and right now executing the pmd plugin as under build will later move it to the reporting http://maven.apache.org/plugins/maven-pmd-plugin/pmd-mojo.html#outputDirectory

Re: maven-checkstyle-plugin.

2008-06-21 Thread Dennis Lundberg
Niranjan Deshpande wrote: I want to use the maven-checkstyle-plugin but with a .cse configuration files instead of the my xml rule set. I went through the checkstyle's documentation, but I did not find anything relevant. What is a .cse configuration file? Also, the format of the eport

Problem with dependencies leakage when executed from parent pom

2008-06-21 Thread Bengali Bengali
Hi, i have a problem with a Maven 2.0.8 build which behaves differently when executed in child pom than from the parent. It seems that when i execute the build from my parent i get dependencies in my child pom that i shouldn't get. ( a dependency leakage) I really need help on this: I ran a

Re: A question about artifact resolution

2008-06-21 Thread Jason van Zyl
Use the maven-dependency-plugin, it can retrieve artifacts and place them so that you can subsequently process them. I suggest staying away from the artifact resolver directly. On 20-Jun-08, at 7:59 PM, ericr wrote: Hi, I'm trying to develop a plugin in which I want to resolve an

maven-ejb3-plugin

2008-06-21 Thread langlois yan
Hi, I would like to use EJB3 in my application. As I want to use an EAR archive which contains un web module and an EJB3 module I need to package my ejb3 with maven-ejb3-plugin and not with maven-ejb-plugin. This behaviour is mandatory by the maven-ear-plugin. After a long search I find that

Re: Location for maven projects..

2008-06-21 Thread Wayne Fay
You should not be creating projects in the ~/.m2/repository directory. Rather, Maven2 uses this directory for storing jars and poms. Create the project somewhere else, anywhere else. Then use mvn install to install the project jars to the local repo cache. Wayne On 6/21/08, Niranjan Deshpande