[jira] Subscription: Design & Best Practices

2006-09-14 Thread jira
Issue Subscription Filter: Design & Best Practices (37 issues) Subscriber: mavendevlist Key Summary MNG-2184Possible problem with @aggregator and forked lifecycles http://jira.codehaus.org/browse/MNG-2184 MNG-612 implement conflict resolution techniques htt

Re: Dependency triggered builds

2006-09-14 Thread Brett Porter
On 15/09/2006, at 12:34 AM, Emmanuel Venisse wrote: Personally, I prefer the PULL method. Agreed. I think we need to have two type of analysis. The first is for dependencies that have a corresponding project in continuum. The second is for other dependencies that are available in the rep

Re: Cancelling builds

2006-09-14 Thread Brett Porter
On 14/09/2006, at 6:09 PM, Kenney Westerhof wrote: Hi Team, Yesterday I've committed some code to enable cancelling builds: Great! - What's the best place to place the cancel build button? Perhaps just list the job on the summary page as 'current job' (in the future: current jobs) an

Re: Cancelling builds

2006-09-14 Thread Brett Porter
On 14/09/2006, at 6:29 PM, Carlos Sanchez wrote: - The results page is broken - some jdo detached error with scmResults. I can't figure out why it doesn't work. This and a lot more bugs have been fixed in the acegi branch. I'll merge them back when I have some time, but if you need someth

Re: svn commit: r443424 - in /maven/continuum/trunk/continuum-webapp/src/main: java/org/apache/maven/continuum/web/action/ScheduleAction.java resources/localization/Continuum.properties webapp/editSch

2006-09-14 Thread Carlos Sanchez
Fixed the loop and reopened issue On 9/14/06, Brett Porter <[EMAIL PROTECTED]> wrote: I was referring to the table elements in the JSP, but I'll also note that the while loop and switch below are unnecessary. second = cronEx[0]; minute = cronEx[1]; etc. - Brett On 15/09/2006, at 9:23 AM, Bre

Re: svn commit: r443424 - in /maven/continuum/trunk/continuum-webapp/src/main: java/org/apache/maven/continuum/web/action/ScheduleAction.java resources/localization/Continuum.properties webapp/editSch

2006-09-14 Thread Brett Porter
I was referring to the table elements in the JSP, but I'll also note that the while loop and switch below are unnecessary. second = cronEx[0]; minute = cronEx[1]; etc. - Brett On 15/09/2006, at 9:23 AM, Brett Porter wrote: This suffers the same limitations that were originally found on the

Re: svn commit: r443424 - in /maven/continuum/trunk/continuum-webapp/src/main: java/org/apache/maven/continuum/web/action/ScheduleAction.java resources/localization/Continuum.properties webapp/editSch

2006-09-14 Thread Brett Porter
This suffers the same limitations that were originally found on the same patch for archiva. Are you sure this is the latest? On 15/09/2006, at 3:36 AM, [EMAIL PROTECTED] wrote: Author: carlos Date: Thu Sep 14 10:36:45 2006 New Revision: 443424 URL: http://svn.apache.org/viewvc?view=rev&rev=4

repository location for maven-model-v3

2006-09-14 Thread Deepak Bhole
Hi, Can someone please tell me where the maven-model-v3 source repository is located? I looked around the maven repo but have been unable to find it :( Thanks, Deepak - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: How to add a new provider ?

2006-09-14 Thread Brett Porter
You'll need to have the SCM plugin in your POM: maven-scm-plugin ... ... provider dependency ... It might be worth adding the ability to do this in the SCM plugin itself so that it can be done for command line operations like scm:checkout - Brett On 14/09/2006, at 11:31

Re: problem with differing versions of maven-model

2006-09-14 Thread Brett Porter
Actually, maven-model-3.0.1 has a different groupId I believe, and belongs to Maven 1.x. You're probably looking for maven-model-2.0.4 On 15/09/2006, at 3:35 AM, fogwolf wrote: Hi. I'm working on a Maven Java Plugin & am running into an issue. I am directly using the Dependency class in m

Re: [discuss] move the plugin tools and reporting to shared

2006-09-14 Thread Brett Porter
On 15/09/2006, at 5:09 AM, Jason van Zyl wrote: Are we just moving it, though it will still be coupled to the core? If the dependency is in one direction so the core depends on the plugin api that's cool with me.D I was thinking the plugin-api would stay in Maven (and plugin- descript

Wagon and WebDav NTLM authentication

2006-09-14 Thread Mykel Alvis
Two questions: Is the webdav wagon still under developement? The web site for wagon in general seems sketchy, with a lot of broken links and possibly erroneous information. I'm working on a patch to allow the webdav wagon to authenticate to an NTLM-authorized DAV resource. Am I wasting my time an

Re: [discuss] move the plugin tools and reporting to shared

2006-09-14 Thread Jason van Zyl
On 12 Sep 06, at 4:18 AM 12 Sep 06, Brett Porter wrote: Hi, I'd like to propose moving the plugin-tools and reporting-impl to shared, to decouple plugin releases from the maven core releases. Right now, building the plugins is blocked around maven 2.0.5. The one downside to this is that

problem with differing versions of maven-model

2006-09-14 Thread fogwolf
Hi. I'm working on a Maven Java Plugin & am running into an issue. I am directly using the Dependency class in my code from the latest version of that jar, 3.0.1. However, the version in my Maven installation directory lib is 2.0.4 (same as the version of Maven I'm using) & the method available i

Re: Error in custom plugin

2006-09-14 Thread Todd Nine
Beuler, anyone...? I would really like to contribute this patch. On 9/12/06, Todd Nine <[EMAIL PROTECTED]> wrote: I tried the latest build of 2.0.5-SNAPSHOT from 09-10-2006. It is not fixed. Is this bug in the maven core or is it part of the "plugin" plugin? Where would I look to begin fixin

Re: Dependency triggered builds

2006-09-14 Thread Emmanuel Venisse
Personally, I prefer the PULL method. I think we need to have two type of analysis. The first is for dependencies that have a corresponding project in continuum. The second is for other dependencies that are available in the repo. For the first one, we need the lastKnownBuildId or just check if t

Re: jdeveloper plugin donation

2006-09-14 Thread Fneuch
We use the Maven JDeveloper plugins and if you look in the issues (JIRA), you're going to see we already contributed. We need the plugin to help us migrate our developers to maven, so i could give a hand. I have only few hours a week to put on it. I don't know where to start but if John guides m

How to add a new provider ?

2006-09-14 Thread Julien Henry
Hi, I'm trying to test the provider I'm writing. I installed it (mvn install), and now I try to call it with maven-scm-plugin: mvn scm:update -DconnectionUrl=scm:synergy: [INFO] [scm:update] [INFO] [ERROR] BUILD ERROR [

Re: Cancelling builds

2006-09-14 Thread Emmanuel Venisse
Kenney Westerhof a écrit : Hi Team, Yesterday I've committed some code to enable cancelling builds: * Schedules have a setting that indicates the maximum job execution time, where job means BuildProjectTask; 0 means indefinitely, the default being 1 hour. * You can cancel a running build.

Dependency triggered builds

2006-09-14 Thread Kenney Westerhof
Hi, I wanted to propose some solutions for triggering builds if dependencies are changed. (I mean: if project A depends on project B, and project B was updated/rebuilt, then A should also be rebuilt to check for any api breaking changes etc.). From the top of my head I can name 2 distinct ap

Dependency triggered builds

2006-09-14 Thread Kenney Westerhof
Sending again, it doesn't seem to have made the list. Original Message Subject: Dependency triggered builds Date: Thu, 14 Sep 2006 10:30:01 +0200 From: Kenney Westerhof <[EMAIL PROTECTED]> To: continuum-dev@maven.apache.org Hi, I wanted to propose some solutions for triggerin

[jira] Subscription: Outstanding Repository Maintenance: Uploads

2006-09-14 Thread jira
Issue Subscription Filter: Outstanding Repository Maintenance: Uploads (31 issues) Subscriber: mavendevlist Key Summary MAVENUPLOAD-1130Rhino js-1.5R4.1 http://jira.codehaus.org/browse/MAVENUPLOAD-1130 MAVENUPLOAD-1129Rhino js-1.5R4-RC3 http://jira.codehaus.org/bro

[jira] Subscription: Outstanding Repository Maintenance: Evangelism

2006-09-14 Thread jira
Issue Subscription Filter: Outstanding Repository Maintenance: Evangelism (27 issues) Subscriber: mavendevlist Key Summary MEV-443 Several projects have maven-metadata.xml files that are missing released versions http://jira.codehaus.org/browse/MEV-443 MEV-441 Several