Re: plugin.jelly variables not available in

2003-09-01 Thread dion
Yes, this is by design. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Gilles Dodinet <[EMAIL PROTECTED]> wrote on 02/09/2003 02:49:55 AM: > ive encountered such a problem some time ago. i solved it by adding a > namespace pointing to the plugin (or so

Re: war-plugin bug?

2003-09-01 Thread Dan Tran
Does this mean, we will not see a fix for this? -Dan - Original Message - From: "Michal Maczka" <[EMAIL PROTECTED]> To: "'Maven Users List'" <[EMAIL PROTECTED]> Sent: Monday, September 01, 2003 5:14 AM Subject: RE: war-plugin bug? > This is caused by the fact that > ${artifact.id} =

RE: war-plugin bug?

2003-09-01 Thread Michal Maczka
This is caused by the fact that ${artifact.id} = ${artifct.groupId}:${artifact.arifactId} while it should be ${artifact.id} = ${artifct.groupId}:${artifact.arifactId}:${artifact.type} (we had a discussion about it some time ago when you have closed one issue in JIRA with resolution "won't fix

Re: Dependency Groups

2003-09-01 Thread Jason van Zyl
On Mon, 2003-09-01 at 13:14, Dave Ford wrote: > Is there a way to define reusable "lib groups"? IntelliJ lets you do this > under project properties/paths/libraries. For example, if i use hibernate in > 5 different projects. And hibernate requires 5 jar files. That's a lot of > extra typing in pro

Re: Dependency Groups

2003-09-01 Thread Nelson Arapé
You may use XML Entities Nelson Arapé On Monday 01 September 2003 13:14, Dave Ford wrote: > Is there a way to define reusable "lib groups"? IntelliJ lets you do this > under project properties/paths/libraries. For example, if i use hibernate > in 5 different projects. And hibernate requires 5 ja

Dependency Groups

2003-09-01 Thread Dave Ford
Is there a way to define reusable "lib groups"? IntelliJ lets you do this under project properties/paths/libraries. For example, if i use hibernate in 5 different projects. And hibernate requires 5 jar files. That's a lot of extra typing in project.xml (dependencies section). Dave Ford Smart Sof

Re: plugin.jelly variables not available in

2003-09-01 Thread Gilles Dodinet
ive encountered such a problem some time ago. i solved it by adding a namespace pointing to the plugin (or so it seems) : ... where test is the test plugin (maven-test-plugin). - please note that after that the 'test' namespace was never used. im really not sure if this should work (perhap

Re: Integrate jaxrpc as dependency

2003-09-01 Thread Rafal Krzewski
Markus Pscheidt wrote: > The problem is that there seems to be no download place available for > jaxrpc.jar which I could use in the URL parameter of the dependency > element. The place at ibiblio does not contain jar files for jaxrpc ( > http://www.ibiblio.org/maven/jaxrpc/ ). Sun's licensig pol

Re: Integrate jaxrpc as dependency

2003-09-01 Thread Emmanuel Venisse
- Original Message - From: "Markus Pscheidt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 01, 2003 4:18 PM Subject: Integrate jaxrpc as dependency > Hi! > > What is the best way to integrate jaxrpc - which is part of the Java Web > Service Developer Pack (Java WSD

Integrate jaxrpc as dependency

2003-09-01 Thread Markus Pscheidt
Hi! What is the best way to integrate jaxrpc - which is part of the Java Web Service Developer Pack (Java WSDP) - into the dependeny list of my project.xml file? I need it because i want to have Axis in my dependencies list also. The problem is that there seems to be no download place availabl

Adding RMIC into the jar goal

2003-09-01 Thread Bateman, Patrick eMEDIA
How do I integrate rmic into the jar goal ? Thanks Pat -Original Message- From: Bateman, Patrick eMEDIA [mailto:[EMAIL PROTECTED] Sent: 29 August 2003 11:05 To: 'Maven Users List' Subject: Test Plugin : maven.junit.sysproperties I'm trying the set two properties for my JUnit tests usin

Checkstyle plugin 2.0 release

2003-09-01 Thread dion
The Maven team is pleased to announce the Checkstyle plugin 2.0 release! http://maven.apache.org/reference/plugins/checkstyle/ The Maven Checkstyle plugin is a plugin for Checkstyle (http://checkstyle.sourceforge.net) that allows for code to be checked and a Maven report produced Changes in this

Re: plugin.jelly variables not available in

2003-09-01 Thread dion
I think xdoc has an init goal for that. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "khote" <[EMAIL PROTECTED]> wrote on 01/09/2003 03:43:22 PM: > I can use > ${pom.getPluginContext('maven-WHATEVER-plugin').getVariable('XXX')} only if > that WHATEVER

RE: plugin.jelly variables not available in

2003-09-01 Thread Brett Porter
Most plugins have a hook that you can add as a prereq (although not on a preGoal - you'd need to do that differently by preGoal calling attainGoal on the content). Eg. War:load does nothing but bring the plugin into action. This is likely to change in the future. - Brett > -Original Message

Re: plugin.jelly variables not available in

2003-09-01 Thread khote
I can use ${pom.getPluginContext('maven-WHATEVER-plugin').getVariable('XXX')} only if that WHATEVER plugin was invoked prior to the pre or post Goal I'm working with. I think it has to load that stuff from the plugin's project.properties, I don't yet know of a way to "easily" load those properties

Re: [ANN] PMD plugin 1.1 released

2003-09-01 Thread dion
I don't think so. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Andy Jefferson <[EMAIL PROTECTED]> wrote on 30/08/2003 10:44:04 PM: > On Saturday 30 Aug 2003 12:53, Vincent Massol wrote: > > The Maven team is pleased to announce the PMD plugin 1.1 releas

Re: plugin.jelly variables not available in

2003-09-01 Thread dion
Does ${pom.getPluginContext('maven-war-plugin').getVariable('XXX')} help? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "khote" <[EMAIL PROTECTED]> wrote on 30/08/2003 10:25:26 AM: > I'm playing around with a postGoal for webapp ... > > > > > >

Re: Test Plugin : maven.junit.sysproperties

2003-09-01 Thread dion
In case noone has answered, pass the env var in via the command prompt (-Dvar=$ENV_VAR), or do it using an ant environment task. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Bateman, Patrick eMEDIA" <[EMAIL PROTECTED]> wrote on 29/08/2003 08:05:23 PM:

Re: war-plugin bug?

2003-09-01 Thread dion
I believe this is filed as an open bug on Maven. Anyone is able to submit a patch fixing it. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Dan Tran" <[EMAIL PROTECTED]> wrote on 31/08/2003 01:45:28 AM: > that is an anoying bug to me, i think it is rep

RE: Word2HTML plugin 1.3 release

2003-09-01 Thread dion
Yep. Theoretically it is :-) The 'current' directory has the 1.4-SNAPSHOT docs in it I'll fix that soonwe need to document how that stuff should work a bit more too. e.g. What the site heading should be, where HEAD docs should go etc. -- dIon Gillard, Multitask Consulting Blog: ht