Re: How to use the '@parameter alias'?

2005-07-28 Thread Peter van de Hoef
Done: http://jira.codehaus.org/browse/MNG-674 Brett Porter wrote: It seems it could be a bug. Would you mind putting it into JIRA? - Brett On 7/27/05, Peter van de Hoef [EMAIL PROTECTED] wrote: Yes that's a typo, I wrote this simplified sample out of my head to illustrate the problem

How to use the '@parameter alias'?

2005-07-27 Thread Peter van de Hoef
wrong? Thanks in advance, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to use the '@parameter alias'?

2005-07-27 Thread Peter van de Hoef
Yes that's a typo, I wrote this simplified sample out of my head to illustrate the problem. In the 'real' case the xml is valid. Thanks anyway. Yann Le Du wrote: Hi Peter, Are you missing a '' in your closing bar tag or is it a copy/paste typo ? Yann --- Peter van de Hoef [EMAIL PROTECTED

Re: [m2] plugin parameter value configuration for non primitive types?

2005-07-25 Thread Peter van de Hoef
I think the PlexusConfiguration type is also worth mentioning here. It enabled me to pass a piece of xml right through to the plugin: import org.codehaus.plexus.configuration.PlexusConfiguration; ... class MyMojo [etc..] { /** * @parameter */ private

Re: [m2] Embedding Maven 2

2005-07-24 Thread Peter van de Hoef
appears again. It appears that the constructor of the DefaultMaven class is constructing the InputHandler. For now, I can live with this and will wait for the documentation on embedding Maven. Greetings, Peter Brett Porter wrote: On 7/24/05, Peter van de Hoef [EMAIL PROTECTED] wrote

[m2] Embedding Maven 2

2005-07-23 Thread Peter van de Hoef
with 'lookup( Maven.ROLE )'. Is this the way to go or is there a better way? Thanks in advance, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Add other repository [m2]

2005-07-14 Thread Peter van de Hoef
If you specify a plugin repository in your POM, like: pluginRepositories pluginRepository idmy-plugins/id nameMy Plugin Repository/name urlhttp://repository.mycompany.org/url

Re: [m2] Adding ANT task to Maven 2

2005-07-13 Thread Peter van de Hoef
if this is the 'officially approved' way to embed Ant in Maven, but it works for me. Maybe the devs can shed some light on this. Hope this helps. Peter van de Hoef Vitaliy Geraymovych wrote: I am in the process of moving Ant scripts to Maven2. I am looking for an example of how to invoke ant task within

Re: [m2] Reports DefaultModelInheritanceAssembler

2005-05-18 Thread Peter van de Hoef
Thanks. Brett Porter wrote: On 5/18/05, Peter van de Hoef [EMAIL PROTECTED] wrote: Brett Porter wrote: On 5/17/05, Peter van de Hoef [EMAIL PROTECTED] wrote: These are, in my perception, 'built-in' plugins. They are executed automatically as part of the 'install' goal. I see

Eclipse-Buckminster

2005-05-18 Thread Peter van de Hoef
Hi all, Just noticed a new project proposal at Eclipse wich, at first glance, looks a lot like Maven: http://www.eclipse.org/proposals/eclipse-buckminster/index.html Competition is good ofcource, but as a 'customer' I was wondering if there are any 'official' standardization efforts going on

Re: [m2] Checkstyle FileNotFoundException

2005-05-17 Thread Peter van de Hoef
Thanks again for all the good work! Brett Porter wrote: output directory fixed for next release. - Brett On 5/16/05, Peter van de Hoef [EMAIL PROTECTED] wrote: - Where can I find the sources of these plugins? Sorry, I was looking with my nose. I've found them under 'maven-reporting

Re: [m2] Reports DefaultModelInheritanceAssembler

2005-05-17 Thread Peter van de Hoef
Brett Porter wrote: On 5/17/05, Peter van de Hoef [EMAIL PROTECTED] wrote: Why are built-in plugins inherited and user-defined plugins not? (their usage is not inherited, their configuration is via pluginManagement but their usage has to be specified in each project). Neither

[m2] Reports DefaultModelInheritanceAssembler

2005-05-15 Thread Peter van de Hoef
. Thanks, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[m2] Checkstyle FileNotFoundException

2005-05-15 Thread Peter van de Hoef
them and, for now, the sources seem to be the best place to start. Thank you very much, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] Checkstyle FileNotFoundException

2005-05-15 Thread Peter van de Hoef
- Where can I find the sources of these plugins? Sorry, I was looking with my nose. I've found them under 'maven-reporting'. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Building on Unix AND Windows

2005-05-03 Thread Peter van de Hoef
The forward slash works in both Windows and Linux. Jamie Bisotti wrote: We have setup CruiseControl, which is using Maven to build, on a Linux box, but most (all) developers are currently using Maven on Windows. We have a parent project, containing the common project.xml, and several child

Re: M2: Multiple repositories for dependencies

2005-04-27 Thread Peter van de Hoef
You can specify something like this in your POM: repositories repository idmy_repo/id nameMy Repository/name urlhttp://repository.myorganization.org/url /repository /repositories

Re: M2: Multiple repositories for dependencies

2005-04-27 Thread Peter van de Hoef
it from my local machine and not a http based server -Binoy -Original Message- From: Peter van de Hoef [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 5:17 PM To: Maven Users List Subject: Re: M2: Multiple repositories for dependencies You can specify something like this in your

Re: M2: Multiple repositories for dependencies

2005-04-27 Thread Peter van de Hoef
Can I prevent M2 fropm looking at ibiblio at all ? Necessary if you've working with maven-proxy. I don't think so. You could try to run M2 with the -o flag. I think repo's on the file system are still used. - To unsubscribe,

Re: [m2] POM inheritance

2005-04-27 Thread Peter van de Hoef
this again, but would you mind submitting a JIRA issue for it? :) That'll remind me. Peter van de Hoef wrote: Hi John, Thanks for your help. So pluginManagement is used for specifying plugin versions and configuration parameters, whether they are used or not. This will be inherited by child projects

Re: [m2] POM inheritance

2005-04-27 Thread Peter van de Hoef
://jira.codehaus.org/browse/MNG-362). Please ignore it if it has already been fixed now. I will try to build the latest from SVN and perform some tests with my own projects. Thanks for all the good work. Peter van de Hoef John Casey wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm looking

[m2] POM inheritance

2005-04-26 Thread Peter van de Hoef
in the derived POM, but if a build section is specified in the derived POM, everything from the base POM is thrown away and only the settings of the derived POM are used. Is this correct? Thanks in advance. Peter van de Hoef

Re: [m2] POM inheritance

2005-04-26 Thread Peter van de Hoef
at it when I have some slack time. Thanks, - -john Peter van de Hoef wrote: Hi all, I have a question about which elements of the POM are inherited by derived POM's. In my parent POM I have a build section which specifies the source directory and some parameters for the java compiler: build

My own repo is consulted for parent POM's but for plugins

2005-04-26 Thread Peter van de Hoef
section has a higher priority than the dependencies section. Hope anybody can shed some light on this. Thanks in advance, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [m2] POM inheritance

2005-04-26 Thread Peter van de Hoef
and testResources? That seems IMHO more in line with the situation where there is no build section at all. In that way it is possible to 'tweak' the build settings slightly without losing the major build logic. - Peter Jason van Zyl wrote: On Tue, 2005-04-26 at 21:00 +0200, Peter van de Hoef wrote

Re: My own repo is consulted for parent POM's but for plugins

2005-04-26 Thread Peter van de Hoef
Done. http://jira.codehaus.org/browse/MNG-358 Jason van Zyl wrote: On Tue, 2005-04-26 at 22:26 +0200, Peter van de Hoef wrote: Hi all, I have the following situation. A parent POM (parent) a child POM (child) and a plugin (plugin). The child inherits from the parent and uses the plugin like

Re: My own repo is consulted for parent POM's but for plugins

2005-04-26 Thread Peter van de Hoef
, - -john Peter van de Hoef wrote: Done. http://jira.codehaus.org/browse/MNG-358 Jason van Zyl wrote: On Tue, 2005-04-26 at 22:26 +0200, Peter van de Hoef wrote: Hi all, I have the following situation. A parent POM (parent) a child POM (child) and a plugin (plugin). The child inherits from the parent

Re: [m2] Multiproject Dependecies

2005-04-20 Thread Peter van de Hoef
level up. Nevertheless, I will file this in JIRA. - Brett On 4/20/05, Peter van de Hoef [EMAIL PROTECTED] wrote: Hi all, I am having a problem with building/installing POM's that depend on each other. My question is: how can I enfore a specific build order in multiproject builds? Basically

[m2] Multiproject Dependecies

2005-04-19 Thread Peter van de Hoef
on the parent by inserting a dependency in the child but that did not work. Any help is appreciated. Thanks in advance, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[m2] My first Mojo

2005-04-14 Thread Peter van de Hoef
, Peter van de Hoef - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] My first Mojo

2005-04-14 Thread Peter van de Hoef
, Peter van de Hoef wrote: Hi, I'll try to answer some of your questions.. Hi all, I have been experimenting with Maven-2.0-alpha-1 for some time now and it looks very promising. Thank you very much. The things I like most: - No more jelly coding for plugins! - No more property files! - I realy like

Re: maven-ui plugin 0.6 release!

2005-04-06 Thread Peter van de Hoef
) at bsh.Reflect.constructObject(Unknown Source) at bsh.BSHAllocationExpression.constructObject(Unknown Source) [.. etc ...] Greetings, Peter van de Hoef mattias_xdin wrote: Mattias Olofsson is pleased to announce the maven-ui plugin 0.6 release! http://olofsson.homeip.net/maven-ui-plugin

Re: maven-ui plugin 0.6 release!

2005-04-06 Thread Peter van de Hoef
Did not get the tree-view either :-( The rest is working fine, thanks. Peter van de Hoef wrote: Cool. This is a nice tool for Maven plugin development and testing. Minor problem: to get it working on Linux, I had to change line 65 of 'plugin.jelly': from: File runner_base = new File(basedir