Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Kalyan Akella
Ok. I resolved the issue. The problem is that, I must use the " maven.test.skip.exec" parameter and not the "maven.test.skip" parameter while suppressing surefire. Using the former causes the test class compilation to occur but not their execution, which is what I need, while the latter suppresses

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Kalyan Akella
Hi Jason, I corrected an error in my project POM (related to profiles) and hence now maven invokes my test plugin during the test phase, as expected. However, as I mentioned in my earlier mail, the usage of the maven.test.skip parameter causes maven to skip the testCompile phase as well. See the l

Re: having Continuum deploy snapshots to the apache repository

2007-10-31 Thread Barrie Treloar
On 10/29/07, Barrie Treloar <[EMAIL PROTECTED]> wrote: > On 10/29/07, Carlos Sanchez <[EMAIL PROTECTED]> wrote: > > +1 > > and if you add the deployment of site too even better I can vouch for the need for this. Our internal development has a snapshot client build of 0.5Gb (note Gigs!) and I quick

RE: Article on Maven Usage

2007-10-31 Thread Srilakshmanan, Lakshman
I don't believe there is any one project in the company that has 100 developers, but it is early days and I could be proved wrong. But I doubt it :). Thanks Lakshman -Original Message- From: Ralph Goers [mailto:[EMAIL PROTECTED] Sent: Thursday, 1 November 2007 2:33 PM To: Maven Developers

Re: Article on Maven Usage

2007-10-31 Thread Ralph Goers
As Brett said this is kind of tough. I work for a large company and if I had to guess I'd say that the 100 maven users number is being met. But that is on lots of projects across a fairly large company. Many of these projects are dependent on each other but are only tied to each other through

Re: Yoko trunk build error.

2007-10-31 Thread John Casey
Nm. On Oct 31, 2007, at 6:38 PM, Brett Porter wrote: org.apache.maven.plugin.resources.ResourcesMojo.copyFile (ResourcesMoj o.java:235) --- John Casey Committer and PMC Member, Apache Maven mail: jdcasey at commonjava dot org blog: http://www.ejlife.net/blogs/john rss: http://feeds.feedburner

Re: Yoko trunk build error.

2007-10-31 Thread John Casey
What about this? org.apache.maven.plugin.resources.ResourcesMojo.copyFile (ResourcesMoj o.java:235) -john --- John Casey Committer and PMC Member, Apache Maven mail: jdcasey at commonjava dot org blog: http://www.ejlife.net/blogs/john rss: http://feeds.feedburner.com/ejlife/john

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Jason van Zyl
Send me your plugin and a sample project with tests and I'll take a look. On 31 Oct 07, at 5:20 PM 31 Oct 07, Kalyan Akella wrote: Moreover, when I set the maven.skip.test to true, apart from not invoking my test plugin, maven, doesn't even compile the test sources as is evident from the

Re: Article on Maven Usage

2007-10-31 Thread Nick Stolwijk
I can't provide a list, but if you checkout a maven2 project and use the stat-scm plugin (mvn stat-scm:stats ) on it, you can find the LOC for that project. Hth, Nick Stolwijk Srilakshmanan, Lakshman wrote: Hi All, I saw the following at htt

Re: MRM-549 & MRM-547 : Proxy Connector Policy settings.

2007-10-31 Thread Joakim Erdfelt
Brett Porter wrote: On 01/11/2007, at 10:01 AM, Joakim Erdfelt wrote: IGNORED is a universal setting that means ... "This policy is ignored." It can be applied to any policy. Changing IGNORED to ALWAYS is makes no sense for the other policies. I wasn't suggesting this for anything but releas

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Kalyan Akella
Moreover, when I set the maven.skip.test to true, apart from not invoking my test plugin, maven, doesn't even compile the test sources as is evident from the following logs: [INFO] [resources:testResources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:testCompile] [IN

Re: Article on Maven Usage

2007-10-31 Thread Brett Porter
On 01/11/2007, at 11:07 AM, Srilakshmanan, Lakshman wrote: I am preparing an article for my company and I have been asked to provide evidence of 'large, i.e. 100 person' projects using Maven. I personally don't agree with their request because, Maven promotes component based development and the

Article on Maven Usage

2007-10-31 Thread Srilakshmanan, Lakshman
Hi All, I saw the following at http://maven.apache.org/articles.html " If you are writing an article on Maven we suggest contacting the developers on the mailing list as we would be happy to provide feedback to help ensure accuracy in your article. Just ping us on the dev mailing list to get in

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Kalyan Akella
I have included the following annotations (in the Javadoc comments) inside my plugin class: @phase test @goal test And, in the main project POM, I am calling my plugin this way, ... ... sample.plugin

Re: MRM-549 & MRM-547 : Proxy Connector Policy settings.

2007-10-31 Thread Joakim Erdfelt
IGNORED is a universal setting that means ... "This policy is ignored." It can be applied to any policy. Changing IGNORED to ALWAYS is makes no sense for the other policies. Releases (old) IGNORED, ONCE, HOURLY, DAILY, DISABLED (new) ALWAYS, ONCE, HOURLY, DAILY, DISABLED Snapshots (old)

Re: Multiple Mirrors in Settings being ignored

2007-10-31 Thread Brett Porter
The name mirror is a bit confusing - it is not actually a search list, but a selection of which "mirror" to use. So it's intentional that it only hits the first one. If you need to search multiple repositories - you can add them in a profile in the settings, or directly to the POM if necess

Re: Yoko trunk build error.

2007-10-31 Thread Brett Porter
I suspect it's the surefire plugin, actually (based on it using the new archiver), which in turn pulls in the new plexus-utils - and for some reason that is polluting the resources plugin (no idea how, but I have seen Brian file a similar bug). - Brett On 01/11/2007, at 3:29 AM, Daniel Kul

Multiple Mirrors in Settings being ignored

2007-10-31 Thread Nelson, Randy J
I had a question about the Maven Ant Task, but not sure where to post it. Version: Maven-ant-tasks-2.0.7.jar I have noticed the following occurrences when you have multiple mirrors defined in 'settings.xml' for a repository such as 'central' and I want to know if that is what is expected, or if

Re: Yoko trunk build error.

2007-10-31 Thread Daniel Kulp
Actually, it's probably the other way... You have plugin snapshots turned on: apache-snapshots Maven apache plugins snapshot repository http://people.apache.org/maven-snapshot-repository default true

Re: Yoko trunk build error.

2007-10-31 Thread John Casey
Just a guess, but you may be using an old version of the resource plugin. It looks like it's using but not declaring a direct dependency on plexus-utils, and if/when maven ceases to export that dependency to the plugin as part of the parent classloader, it fails. Again, just a guess. -john

Submitted patches

2007-10-31 Thread Roberts,Jared
Has the 2.0.8 release been finalized yet? I have just submitted a patch to an issue that is affecting my workflow and I would like it to be included. If possible, could someone take a look at MNG-3265 [1] and commit the attached patch? The maven-model Extension.equals() method is throwing NPEs when

Re: How to discuss about misspelling ?

2007-10-31 Thread Emmanuel Venisse
Damien Lecan a écrit : Can you provide a patch for you translations fixes? Patch is ready, against continuum-1.1-beta-4 tag. How can I submit it : - here ? - in http://jira.codehaus.org/browse/CONTINUUM-546 ? - in a new jira ? In a new jira Thanks Emmanuel

Re: How to discuss about misspelling ?

2007-10-31 Thread Damien Lecan
> Can you provide a patch for you translations fixes? Patch is ready, against continuum-1.1-beta-4 tag. How can I submit it : - here ? - in http://jira.codehaus.org/browse/CONTINUUM-546 ? - in a new jira ? Damien

Re: Yoko trunk build error.

2007-10-31 Thread Alan D. Cabrera
Does anyone in maven-land know why we have to do this? Regards, Alan On Oct 31, 2007, at 2:11 AM, Rick McGuire wrote: I finally managed to get this to build, but it wasn't a pretty process. Here were the steps: 1) I upgraded my maven version to 2.0.7. 2) Attempt to rebuild 2.0.7. This

Continuum 1.1-beta-4 on Maven zone

2007-10-31 Thread Emmanuel Venisse
Hi, I'll update Continuum on the zone tomorrow. For this update, I'll probably remove all build results. Emmanuel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Jason van Zyl
On 31 Oct 07, at 6:57 AM 31 Oct 07, Kalyan Akella wrote: Hi Jason, Thank you for the response. However, even after setting the maven.skip.testparameter to 'true' in my main POM, the maven build cycle doesn't still invoke my plugin in the testing phase. It simply skips the surefire:test phase

Re: Maven runs surefire plugin for testing by default. How to change this?

2007-10-31 Thread Kalyan Akella
Hi Jason, Thank you for the response. However, even after setting the maven.skip.testparameter to 'true' in my main POM, the maven build cycle doesn't still invoke my plugin in the testing phase. It simply skips the surefire:test phase and proceeds to the consequent phases. Is there anything I am

Dependency Browser Tool

2007-10-31 Thread jake341
We have an internally developed tool that allows us to browse the dependency tree for a selected pom. It lists the artifacts, versions and artifacts with more that one version. We use it for finding where a dependency is coming from and for resolving conflicting version issues. The tools is Jav