Re: Findbugs: java.lang.OutOfMemoryError: Java heap space

2006-02-11 Thread Brian Burridge
Thanks, it was the MaxPermSize that I needed to set. And I set them all to 512m and it still worked. Brian On 2/10/06, Daniel Beland [EMAIL PROTECTED] wrote: This is what I had to set to prevent all errors when building the site with a lot of reports MAVEN_OPTS= -Xmx1024m -Xms1024m

Question about changelog developer name vs develope report

2006-02-11 Thread Brian Burridge
Why is it that the name of the developer on the developer report links to the team list, but the developers name on the changelog doesn't? Is that a setting? Brian

[m2] Transitive Dependencies

2006-02-11 Thread Denise Li
I am using maven 2 on a project and I recently discover that maven2 downloads many jars for my project even though my project has few dependencies. All of my dependencies are in the provided scope as I expect the application server my application runs in will provide them. It turns out the

Re: Newbie question

2006-02-11 Thread Eugeny N Dzhurinsky
On Fri, Feb 10, 2006 at 11:43:26AM -0500, Mang Jun Lau wrote: In this case, you need to call a mvn install on the module that is being depended on so that the module is built to your local repository. Then, it should find the jar in your local repository and not on the web. Cool.. but do I

Mirror repositories update

2006-02-11 Thread Paolo Perrucci
Hi all, some days ago I saw the post announcing the release of eclipse plugin 2.1. But until now I can't found it in any mirrors repositories. For example neither mirrors.dotsrc.org or mirrors.sunsite.dk contains this plugin. How much time is needed for the mirrors to be updated? Thanks Paolo

hibernate3 plugin

2006-02-11 Thread Marco Mistroni
hello all, i m currently using Maven 1.1, and i need to download hibernate3-maven-plugin can anyone tell me where i can downlod it, and which version? thanks in advance and regards marco

Re: [m2] path relative to parent/reactor pom.xml

2006-02-11 Thread Damian Krzeminski
Lee Meador wrote: I have all my projects as siblings in the file system. My checkstyle xml file is in the same folder as all those folders which means that its path in all the POMs (which they inheirit from the parent) is ../chk.xml. That same folder is the root of the project in svn. That

Re: [m2] path relative to parent/reactor pom.xml

2006-02-11 Thread Daniel Kulp
On Thursday 09 February 2006 10:36, Damian Krzeminski wrote: What's the recommended way of specifying paths that are always relative to parent pom (regardless if I am building from parent directory or from any of the subprojects directories)? The only way we got this to work is to use

Re: how to access development versions of non-plugin components from the repo?

2006-02-11 Thread Chris Markle
Brett, You need to change the dependencies element in whichever plugin or project needs to use it, then reinstall them. Sorry for my dense-ness here but I do not understand this. I am playing with the javadoc plugin which is invoked by the maven-report-impl code. I have built dev versions

Re: Can't Figure Out How to Add System Properties For My Modules

2006-02-11 Thread Stephen Duncan
I'm not sure what activeByDefault / does, but it's not going to turn it on automatically. What you want is: settings profiles profile idproject_name/id activation activeByDefault/ /activation properties system.property.name

Re: Mirror repositories update

2006-02-11 Thread Stephen Duncan
Good question. I stopeed using the mirrors.dotsrc.org mirror because it didn't have the new eclipse plugin yet. Most of the mirrors specified here do have it: http://maven.apache.org/guides/mini/guide-mirror-settings.html For instance:

Re: Mirror repositories update

2006-02-11 Thread Stephen Duncan
Huh. That was supposed be a link to this mirror: http://ftp.ggi-project.org/pub/packages/maven2 But it looks like it just redireced to ibiblio.org... Planetmirror has it and looks like an actual mirror: http://public.planetmirror.com/pub/maven2/org/apache/maven/plugins/maven-eclipse-plugin/2.1

RE: Maven 2 - Ant - Regular Expressions

2006-02-11 Thread Martin, John M. \(Number Six Software\)
Right. It is in my classpath environment variable so that when I run ant, it picks up ant-jakarta-regexp. But when maven does the antrun, I get the error. I had attempted to make ant-jakarta-regexp a dependency for the antrun plugin (as you can see in the pom, below (I put it into our local

RE: Bad behavour of xdoclet-maven-plugin ?

2006-02-11 Thread langlois yan
Hi, I finaly managed to resolve my problem. This behaviour comes from a bug in xdoclet see : http://mojo.codehaus.org/xdoclet-maven-plugin/usage.html the bug report can be found here : http://opensource2.atlassian.com/projects/xdoclet/browse/XDT-1505 Yan. --- langlois yan [EMAIL PROTECTED] a

Re: Newbie question

2006-02-11 Thread Nicolas Peeters
To create the jar/war/... run mvn package To compile: you can run mvn compile. See http://maven.apache.org/guides/getting-started/index.html On Fri, Feb 10, 2006 at 11:43:26AM -0500, Mang Jun Lau wrote: In this case, you need to call a mvn install on the module that is being depended on so

Re: Newbie question

2006-02-11 Thread Eugeny N Dzhurinsky
On Sat, Feb 11, 2006 at 07:24:40PM +0100, Nicolas Peeters wrote: To create the jar/war/... run mvn package To compile: you can run mvn compile. See http://maven.apache.org/guides/getting-started/index.html Could you please read the thread from top? I'm trying to compile module in multi-module

Re: Plugin for class line count?

2006-02-11 Thread jean-laurent de morlhon
I did the maven2 plugin port and I can confirm that javancss does not support java 1.5 syntax, the program itself (not the plugin) has not been updated since september 2002 :( I was looking for a way to get the source configuration parameter of the maven-compiler-plugin to skip the javancss

Property variable not interpolated in parent element when POM is installed

2006-02-11 Thread Sasvata Chatterjee
Hi, I have a multipoject build. In the submodules, in the parent section, I am using a variable like this: parent groupIdmygroup/groupId artifactIdmyartifact/myartifact version${mygroup.myartifact.version}/version /parent In the parent pom, I define: project

Re: How to bind execution of integration tests to integration-test phase

2006-02-11 Thread Pete
I have achieved integration testing (both JunitEE/Cactus and JUnits calling remote interfaces) in M2 using a very simple lightweight POM for each discrete task/execution in the integration phase e.g. + runtests-integration pom.xml (parent pom, invoking child modules in the order below)

Re: how to access development versions of non-plugin components from the repo?

2006-02-11 Thread Brett Porter
On 2/12/06, Chris Markle [EMAIL PROTECTED] wrote: Sorry for my dense-ness here but I do not understand this. I am playing with the javadoc plugin which is invoked by the maven-report-impl code. Actually, the report-impl code is used by the javadoc plugin, which is invoked by the site plugin.

Re: Newbie question

2006-02-11 Thread Alexandre Poitras
You problably forgot to add a parent reference in your different modules. After that, you just need to run the command in the directory of your parent project, wich has a pom packaging declared, and Maven will figure out the other to compile the different modules. On 2/11/06, Eugeny N Dzhurinsky

Generics Error

2006-02-11 Thread Ole Ersoy
Hey Everybody, I'm running jdk 1.5, however when compiling maven tells me the following: Authenticator.java:[8,25] generics are not supported in -source 1.3 (try -source 1.5 to enable generics) HashtableString, String env = new HashtableString, String(); So I tried running

Re: Generics Error

2006-02-11 Thread Wendy Smoak
On 2/11/06, Ole Ersoy [EMAIL PROTECTED] wrote: I'm running jdk 1.5, however when compiling maven tells me the following: Authenticator.java:[8,25] generics are not supported in -source 1.3 (try -source 1.5 to enable generics) HashtableString, String env = new

Re: help with the following maven error

2006-02-11 Thread Arnaud HERITIER
It's an old bug in the xdoc plugin. Which release of maven are you using ? Did you try to upgrade the xdoc plugin. Arnaud On 2/10/06, gauri tilloo [EMAIL PROTECTED] wrote: I am getting the following error when trying to deploy my site... BUILD FAILED File.. C:\Documents and

Re: xdoc plugin and comment in dependencies

2006-02-11 Thread Arnaud HERITIER
I suppose just for the documentation. I think it was also asked to the users to begin to declare them in m1 POMs to be fully usable by m2 projects. Arnaud On 2/11/06, Lukas Theussl [EMAIL PROTECTED] wrote: Maven 1 doesn't know anything about scope, so I don't see how this could be useful?