m2 public repositories are FUBAR

2006-09-10 Thread Brill Pappin
I may be out to lunch here, but the m2 public repositories seem to be getting worse. the one that finally got me to write this was the dependency plugin, which is listed on the main maven plugin list. http://maven.apache.org/plugins/maven-dependency-plugin/ Now I don't know if the

Re: m2 public repositories are FUBAR

2006-09-10 Thread Brett Porter
Is this a general problem, or just a short fuse? The dependency plugin is a known problem, which I *thought* had been fixed documentation wise recently. I was pushing for it to be moved back to the sandbox since it hasn't seen a release since it was moved to Apache (originally put together at

Re: m2 public repositories are FUBAR

2006-09-10 Thread Brill Pappin
Sorry for the tone... it's both an ongoing problem (which sounds like it's being delt with) and a short fuse :) It may be that I'm having to use a lot of plugins that are not as mainstream as most people are using, but I have had the same problem with others that say they are public. Until now,

Re: m2 public repositories are FUBAR

2006-09-10 Thread Alex Turner
Don't worry - you aren't the only person annoyed by the inconsistencies of the repos. Alex On 9/10/06, Brill Pappin [EMAIL PROTECTED] wrote: Sorry for the tone... it's both an ongoing problem (which sounds like it's being delt with) and a short fuse :) It may be that I'm having to use a lot

Maven 2: applet and war

2006-09-10 Thread Marc Chételat ML
Hi all, One of our new project require that we have an applet in one web application. Our directory structure is : root folder | |--- applet (pom.xml jar) |--- webapp-war (pom.xml using war-maven-plugin) |--- ... Each module has its proper pom.xml file and the question is how to integrate

Reduce memory-usage of maven 2

2006-09-10 Thread Elias Gerber
Hello everyone! I am using Maven 2.0.4 for some of my (very small) projects. Now I installed maven on a virtuall root server I own, and I would like to use maven to do daily builds on that machine. But if I run 'mvn package' there, I get the following exception: java.io.IOException:

Re: Reduce memory-usage of maven 2

2006-09-10 Thread Martijn Dashorst
Probably the defaults for your jvm are too low. You can (read: should be able to) increase the memory available for your Java runtime environment by setting the following (assuming you use bash as a shell): export JAVA_OPTS=-Xmx512m This should give you enough memory for maven to run in.

Re: problems running project on jetty

2006-09-10 Thread wlfshmn
Greetings, I experience the same problem using putty6 with a myfaces project using core and tomahawk, but not ADF. My project runs fine if deployed on tomcat5.5 however. I suspect there is a problem with regards to how jetty locates myfaces jars, as the jetty page has instructions to put hem in

How to join the mevenide mailing list?

2006-09-10 Thread Naresh Bhatia
Does anyone know how to join the mevenide mailing list? The Lists link on http://codehaus.org/ is broken so I don't know how to join that list. Thanks.

pluginManagement configuration ignored for reporting plugins?

2006-09-10 Thread Geoffrey De Smet
Having this: build pluginManagement plugins ... plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-javadoc-plugin/artifactId version2.0/version

Can it be a mirror?

2006-09-10 Thread Firmansyah Adiputra
i have installed archiva and set it up as a proxy. when i download artifact the first time when i install a project (mvn install), it can download the artifact from ibiblio. but when i try to use it offline (i disconnected the internet) and i empty my local repos, it says that it can't find the

Re: Reduce memory-usage of maven 2

2006-09-10 Thread dan tran
surefire plugin by default spins off a new jvm, you can configure surefire plugin's forkMode to none http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html -D On 9/10/06, Elias Gerber [EMAIL PROTECTED] wrote: Hi Martijn On Sun, 2006-09-10 at 16:09 +0200, Martijn Dashorst

Re: Reduce memory-usage of maven 2

2006-09-10 Thread Elias Gerber
Hi Dan On Sun, 2006-09-10 at 09:20 -0700, dan tran wrote: surefire plugin by default spins off a new jvm, you can configure surefire plugin's forkMode to none http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html Thank you very much for your help - it is working now :) Elias

Re: Reduce memory-usage of maven 2

2006-09-10 Thread Elias Gerber
Hi Martijn On Sun, 2006-09-10 at 16:09 +0200, Martijn Dashorst wrote: Probably the defaults for your jvm are too low. You can (read: should be able to) increase the memory available for your Java runtime environment by setting the following (assuming you use bash as a shell): export

Anybody have a prez for continuum

2006-09-10 Thread Anoop kumar V
Hi, We have just adopted Continuum as the continuous build manager for some of our projects. And I have bee given the responsibility of giving a presentation about Continuum for about 15-20 mins. Was wondering if anyone has and can share some prez / doc for Continuum and I can enhance the same

Re: How to join the mevenide mailing list?

2006-09-10 Thread Yann Le Du
http://mevenide.codehaus.org/mail-lists.html 2006/9/10, Naresh Bhatia [EMAIL PROTECTED]: Does anyone know how to join the mevenide mailing list? The Lists link on http://codehaus.org/ is broken so I don't know how to join that list. Thanks.

Re: m2 public repositories are FUBAR

2006-09-10 Thread Brill Pappin
Brett, Do you need someone to maintain that plugin? If no one is maintaining it, I will volunteer... I've been using it fairly often recently and need it to work and be availible. FYI - I'm using for two things. Native libraries I need to pull into a project from the repository and wring

Does javadoc aggregation have any know classpath issues?

2006-09-10 Thread Geoffrey De Smet
Here's my javadoc configuration for our project (http://spring-rich-c.sf.net): plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-javadoc-plugin/artifactId version2.0/version configuration

Re: Maven 2: applet and war

2006-09-10 Thread Geoffrey De Smet
There's a handy mojo dependency-maven-plugin for this, which I also use for my webstart client application, see bottom of: http://mojo.codehaus.org/webstart-maven-plugin-parent/webstart-maven-plugin/howto.html With kind regards, Geoffrey De Smet Marc Chételat ML wrote: Hi all, One of our

Re: Does javadoc aggregation have any know classpath issues?

2006-09-10 Thread Wendy Smoak
On 9/10/06, Geoffrey De Smet [EMAIL PROTECTED] wrote: But when I run this I get an error, but if I remove the aggregatetrue/aggregate tag, it works. It looks like the dependencies on my modules aren't supplied to the javadoc tool. There doesn't seem to be a JIRA issue. The issue for this may

Re: Does javadoc aggregation have any know classpath issues?

2006-09-10 Thread Mathias Brökelmann
have you tested it with the patch for http://jira.codehaus.org/browse/MJAVADOC-72? 2006/9/10, Wendy Smoak [EMAIL PROTECTED]: On 9/10/06, Geoffrey De Smet [EMAIL PROTECTED] wrote: But when I run this I get an error, but if I remove the aggregatetrue/aggregate tag, it works. It looks like the

Re: m2 public repositories are FUBAR

2006-09-10 Thread Brett Porter
I wouldn't say it has been abandoned, but it could certainly use more helpers, which would be much appreciated. If there are any known problems with other plugins being in such a state, please feel free to call them out. I'm all for cutting back the list of published plugins to the stable,

Session time too short

2006-09-10 Thread Steve Baker
Can someone please point out how to extend the session time so that I don't have to log into continuum every time I need to check a build? This wouldn't be such a problem if the login redirected to the originally requested page. Always redirecting to the homepage makes it impossible to deep link

How to cancel the maven dir in META-INF?

2006-09-10 Thread jiangshachina
Hello, I use mvn package for packaging. In the archive file, there is a maven directory in MAET-INF, but that's not my want. How not to generate the directory? a cup of Java, cheers! Sha Jiang -- View this message in context:

Re: How to cancel the maven dir in META-INF?

2006-09-10 Thread Wendy Smoak
On 9/9/06, jiangshachina [EMAIL PROTECTED] wrote: I use mvn package for packaging. In the archive file, there is a maven directory in MAET-INF, but that's not my want. How not to generate the directory? http://maven.apache.org/guides/mini/guide-archive-configuration.html -- Wendy

Re: How to cancel the maven dir in META-INF?

2006-09-10 Thread jiangshachina
Hello, Thanks for your reply. I use the configuration in maven-war-plugin, it's ok. But I use almost the same configuration in maven-jar-plugin, it doesn't work. build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-jar-plugin/artifactId

Re: How to cancel the maven dir in META-INF?

2006-09-10 Thread Wendy Smoak
On 9/10/06, jiangshachina [EMAIL PROTECTED] wrote: The output is ... [INFO] Failed to configure plugin parameters for: org.apache.maven.plugins:maven-jar-plugin:2.0 Cause: Cannot find setter nor field in org.apache.maven.archiver.MavenArchiveConfiguration for 'addMavenDescriptor' ... Try it

Re: How to cancel the maven dir in META-INF?

2006-09-10 Thread jiangshachina
Hi, Wendy Thanks very much! The problem disappeared. a cup of Java, cheers! Sha Jiang Wendy Smoak-3 wrote: On 9/10/06, jiangshachina [EMAIL PROTECTED] wrote: The output is ... [INFO] Failed to configure plugin parameters for: org.apache.maven.plugins:maven-jar-plugin:2.0 Cause:

Install file to other repositories?

2006-09-10 Thread jiangshachina
Hello, I have set localRepository parameter in Maven_Home/conf/settings.xml. For install files, I use command mvn install:install-file -Dfile=path-to-file -DgroupId=group-id -DartifactId=artifact-id -Dversion=version -Dpackaging=packaging Defaultly, the file will be install to local repository.

Invalid URL?

2006-09-10 Thread K Burns
Hi, I'm trying to set up a new M2 project, using Continuum 1.0.3. My project structure is: parent_project child_project1 child_project2 where the 2 children are defined in the parent pom.xml I'm entering a POM URL of the format: scm:cvs:pserver:username:

Invalid URL

2006-09-10 Thread K Burns
Hi, I'm trying to set up a new M2 project, using Continuum 1.0.3. My project structure is: parent_project child_project1 child_project2 where the 2 children are defined in the parent pom.xml I'm entering a POM URL of the format:

Re: Install file to other repositories?

2006-09-10 Thread Wayne Fay
It might be a bug -- sounds like the localRepo setting cannot be overridden on the CLI like many/most other properties. This may be on purpose, or it may be an accident, unsure. Check JIRA for a bug report/enhancement request and vote/watch it, or file one if you can't find one already posted.

Re: Install file to other repositories?

2006-09-10 Thread jiangshachina
Hi, Thanks for your reply. I have no experience of searching bugs at JIRA. I have tried several times. But my every search would be followed by a great of issue :( But, I think the bug is so abvious, many people may have found it ^_^ a cup of Java, cheers! Sha Jiang Wayne Fay wrote: It