RE: heap space error

2007-10-26 Thread nick_stolwijk
It seems that Java ran out of heap space. Generally not a good sign. What Java version and Maven version are you running? What kind of project are you trying to build? Multimodule, special plugins, etc? With regards, Nick Stolwijk -Original Message- From: Sonar, Nishant [mailto:[EMAIL

RE: Download of alpha version on repo1.maven.org

2007-10-26 Thread nick_stolwijk
Everything not SNAPSHOT is considered stable in Mavens eyes. ;) It is indeed best practice to qualify each plugin used with a version number, to avoid such surprises. As far as I know, sometimes an alpha or beta is released, when other plugins are waiting on it, or they just want more people to

RE: maven-project-info-reports-plugin do not include Javadoc when using

2007-10-25 Thread nick_stolwijk
Could you post your pom file and the output of mvn -X site? With regards, Nick Stolwijk -Original Message- From: Mac-Systems [mailto:[EMAIL PROTECTED] Sent: Thu 10/25/2007 11:30 AM To: Maven Users List Subject: Re: maven-project-info-reports-plugin do not include Javadoc when using We

RE: maven-project-info-reports-plugin do not include Javadoc when using

2007-10-25 Thread nick_stolwijk
If at first the javadocs were generated, I guess you had configured the javadoc reporting plugin [1]. Maybe you removed the configuration of it? Hth, Nick Stolwijk [1] http://maven.apache.org/plugins/maven-javadoc-plugin/usage.html -Original Message- From: Mac-Systems [mailto:[EMAIL P

RE: new to maven

2007-10-25 Thread nick_stolwijk
To run from eclipse you would have to look at the Eclipse plugin. [1] Basically, you would run mvn eclipse:eclipse (optional: -DdownloadSources=true and/or -DdownloadJavadoc=true) and create a M2_REPO variable inside Eclipse. This would set up your classpath for eclipse. To create a runnable ve

RE: Javadoc Plugin 2.3 - Generating Doc caused Out of Memory -Xmx doent help

2007-10-18 Thread nick_stolwijk
Also, you're not running out of heap space but of permgenspace. Try (for maven / antrun plugin) -XX:MaxPermSize=256 or (for the javadoc plugin) -J -XX:MaxPermSize=256 Hth, Nick Stolwijk -Original Message- From: Tim Kettler [mailto:[EMAIL PROTECTED] Sent: Thu 10/18/2007 3:24 PM To: Mav

RE: how to get the maven repository to local machine?

2007-10-18 Thread nick_stolwijk
The total repository is around 10 GB. You know the preferred way of setting up a mirror is by using one of the available proxy servers? You can use archiva, artifactory or proximity for this. http://maven.apache.org/archiva/ http://proximity.abstracthorizon.org/ http://www.jfrog.org/sites/artif

Live cd of an development environment

2007-10-12 Thread nick_stolwijk
Some time ago I found a live cd of a development environment, which combined SVN, a maven repository, a continuous integration framework and an issue tracking system. I just can't remember where I found it. With searching in Google I found maestro, but there was another project. Can someone poin

RE: Maven not compiling source under generated-sources

2007-09-25 Thread nick_stolwijk
That's by design. ;) Seriously, the plugins, which generates sourcecode normally place their code in a subdirectory of target/generated-sources and add that directory to the compiler. Your ant task doesn't add a directory to the compiler plugin. Can you take a look at the axis2 maven plugin[1]?

Maven 2 -> Maven 1 converter

2007-08-21 Thread nick_stolwijk
I have found the maven 2 plugin to convert a project.xml (maven 1) to a pom.xml (maven 2). Is there also a maven 1 or maven 2 plugin, which converts a pom.xml to a project.xml? With regards, Nick Stolwijk

RE: release:prepare must be runned twice?

2007-08-21 Thread nick_stolwijk
Why would you check in release.properties? AFAIK, it is a more common use case to let your SCM ignore the release.properties. I guess your release:prepare would run smooth. Hth, Nick Stolwijk -Original Message- From: Alexandre Gomes [mailto:[EMAIL PROTECTED] Sent: Tue 8/21/2007 1:53 P

RE: FEST - Fixtures for Easy Software Testing - in a Maven repository?

2007-08-01 Thread nick_stolwijk
I don't see the jars in the central repository (Checked through www.mvnrepository.com), but I do see other google code projects releases in the repository. If you want them in the repository, you can have a look at [1] Hth, Nick Stolwijk [1] http://maven.apache.org/guides/mini/guide-central-re

Re: MVN Repository & Hibernate

2007-02-16 Thread nick_stolwijk
The group id of hibernate has changed from hibernate to org.hibernate. See http://repo1.maven.org/maven2/org/hibernate/hibernate/ for the 3.2.GA version. - Oorspronkelijk bericht - Van: Ryan Cuprak <[EMAIL PROTECTED]> Datum: vrijdag, februari 16, 2007 3:22 am Onderwerp: MVN Repository & Hi