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:

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

Re: plugin.jelly variables not available in postGoal

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 ... postGoal

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 release!

Re: plugin.jelly variables not available in postGoal

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: plugin.jelly variables not available in postGoal

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

Re: plugin.jelly variables not available in postGoal

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 plugin

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

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

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

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 WSDP) - into

Re: plugin.jelly variables not available in postGoal

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) : project xmlns:test=test .. ... /project where test is the test plugin (maven-test-plugin). - please note that after that the 'test' namespace was never used. im really

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 Soft

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 jar

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