maven-release-manager: Request for all snapshot releases to be deployed with attached sources

2006-10-31 Thread Barrie Treloar
Can any snapshot releases also have the source attached as part of the deployment? There is an error filed at http://jira.codehaus.org/browse/CONTINUUM-968 which could be in maven-release-manager but it is impossible to tell since there is no source deployed. The trunk also fails but for differen

When will the maven-dependency-plugin be functional?

2006-10-31 Thread Jason Dillon
I have been using the dependency-maven-plugin from the mojo project for months now... but it appears to not refresh dependencies when copying or unpacking when the artifacts have changed. I just tried changing the plugin to: org.apache.maven.plugins maven-dependency-plugin 2.0-

Re: Plugin execution ordering within a phase

2006-10-31 Thread Brian Topping
Hi Kenney, Thanks for your thoughts on this. I like most all these ideas. Comments inline. On Oct 31, 2006, at 12:25 AM, Kenney Westerhof wrote: Brian Topping wrote: Hi, there's a bug in maven 2.0.4 for the plugin ordering. It uses a Set. This is fixed in SVN (LinkedHashSet that preserv

Re: DOCCK plugin busted for all Apache hosted Maven 2 plugins

2006-10-31 Thread Brett Porter
Grmph. You'd look at the site plugin. If large portions of code are reusable they might need to be factored out to another shared component, but since it was maven project specific it isn't in doxia. Thanks, Brett On 01/11/2006, at 8:19 AM, Dennis Lundberg wrote: Hi all After Brett's ch

Re: svn commit: r466898 - in /maven/plugins/trunk: ./ maven-ant-plugin/src/site/ maven-antlr-plugin/src/site/ maven-antrun-plugin/src/site/ maven-assembly-plugin/ maven-assembly-plugin/src/site/ maven

2006-10-31 Thread Brett Porter
Thanks Dennis. Can you file this in JIRA? I'd rather fix the site plugin than revert this change. - Brett On 01/11/2006, at 8:12 AM, Dennis Lundberg wrote: Hi Brett I did some more research on this: 1. I removed the whole doxia and maven-site-plugin folders from my local repo - i.e. all

DOCCK plugin busted for all Apache hosted Maven 2 plugins

2006-10-31 Thread Dennis Lundberg
Hi all After Brett's changes to add inheritance to the site builds for all our Maven 2 plugins, the DOCCK plugin is not working properly. The DOCCK plugin does not handle inheritance of site.xml files at all. It depends on there being a local site.xml file present in each plugin, that should

Re: svn commit: r466898 - in /maven/plugins/trunk: ./ maven-ant-plugin/src/site/ maven-antlr-plugin/src/site/ maven-antrun-plugin/src/site/ maven-assembly-plugin/ maven-assembly-plugin/src/site/ maven

2006-10-31 Thread Dennis Lundberg
Hi Brett I did some more research on this: 1. I removed the whole doxia and maven-site-plugin folders from my local repo - i.e. all versions, to make sure I am using the released versions from the central repo. 2. Added a menu to src/test/projects/site-plugin-test8/project8/src/site/site.xm

Fwd: [discuss] Archiva Logo

2006-10-31 Thread Brett Porter
This might be of interest to the wider group. I'd appreciate it if feedback could be sent to archiva-dev, however. Thanks, Brett Begin forwarded message: From: Brett Porter <[EMAIL PROTECTED]> Date: 30 October 2006 9:33:08 AM To: archiva-dev@maven.apache.org Subject: [discuss] Archiva Logo R

RE: integration tests: how to handle versions?

2006-10-31 Thread Dan Fabulich
Sorry I didn't get back to folks earlier. I do genuinely believe that branching the integration tests is a good idea. (Though I can't say anything bad about TestNG; we should do that, too!) My remarks about branching being a good idea are based on about 4 years of experience doing automated test

Re: Daily builds

2006-10-31 Thread Raphaël Piéroni
Tried : maven-2.0.4, jdk1.6.0-b2, Mandriva-2007-x86-64 Archiva : During Archiva Runtime Generator : Error creating assembly: You must set at least one file. but the war file was generated. Continuum : Error when during test : there were 5 errors (can't remember the project) but i can find the la

re[2]: Maven on Nabble

2006-10-31 Thread natalie.burdick
Eric It's fixed for me too, thanks! One question though, do you know from where on the main Maven.org site will this be accessible? here: http://maven.apache.org/mail-lists.html ? Natalie --- Original Message --- From: "Nathan Beyer" <[EMAIL PROTECTED

src/main/config

2006-10-31 Thread Erik Drolshammer
Hi! What is the difference between src/main/config and src/main/resources? Which files should go where? Would it be possible to provide som concrete examples? Currently my config-folder is empty and resources contain: custom hibernate-mappingfiles acegi*.xml applicationContext*.xml checkstyle

RE: SV: Mojo and it's own dependencies

2006-10-31 Thread hermod.opstvedt
Hi I am now able to look at it. I suppose the what you refer to as "common project called maven-ant" is not the maven-ant plugin? What is the svn of this? Hermod -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 11:36 PM To: Maven Develope

Re: Classloader woes

2006-10-31 Thread Kenney Westerhof
Hi, this is really a user question, but I'll answer it here. [EMAIL PROTECTED] wrote: Hello, I need help with a classloader problem. Can someone tell me the difference between: String s = "/data/demo.txt"; URL u1 = this.getClass().getResource(s); URL u2 = this.getClass().getClassLoader().ge

Classloader woes

2006-10-31 Thread Aaron . Digulla
Hello, I need help with a classloader problem. Can someone tell me the difference between: String s = "/data/demo.txt"; URL u1 = this.getClass().getResource(s); URL u2 = this.getClass().getClassLoader().getResource(s); My problem: u1 is != null (so the path is correct and the resouce is in the

Re: integration tests: how to handle versions?

2006-10-31 Thread Kenney Westerhof
I agree that branching probably is maintenance hell. In the old setup we had a file that listed all the tests and we could append each line with list of version ranges to indicate the maven version the test was for. In the new setup, this is not possible. Some thoughts: - Annotating the integ

Re: integration tests: how to handle versions and external oddities?

2006-10-31 Thread Brett Porter
On 31/10/2006, at 6:42 PM, Jason van Zyl wrote: On 30 Oct 06, at 2:24 PM 30 Oct 06, Brett Porter wrote: This is really a question for the users list, but since we're here these are probably the alternatives you have: - use profiles to distringuish which tests run when (by reconfiguring th

M2 Cargo plugin now found...

2006-10-31 Thread Kevin Jackson
Hi all, The problem I just spent 2 hours banging my head against was related to where I declared the cargo-maven2-plugin Declare the plugin under and it downloads fine, declare it under and you get *NO* information about why it won't download I'd like to suggest to any mvn2 devs lurking that

Re: Plugin execution ordering within a phase

2006-10-31 Thread Kenney Westerhof
Brian Topping wrote: Hi, there's a bug in maven 2.0.4 for the plugin ordering. It uses a Set. This is fixed in SVN (LinkedHashSet that preserves ordering), and will be available in 2.0.5 and 2.1. Thinking about this, it may be a too harsh limitation of M2: plugins are meant to be independent