RE: Mbean deployment descriptors

2004-02-20 Thread CaseyJD
The only way I've been successful (I've only tried once or twice) was to create a custom maven.xml goal to run jmxdoclet via ant (the xdoclet maven plugin is pretty hard to understand, much less use, from my perspective). I can send you my goal definition from my other email address/computer if you

RE: Can I set the classpath for a plugin?

2004-02-13 Thread CaseyJD
What about using the project.xml from the plugin? You can add dependencies via the subnode... Is this not adequate? -john -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 12:52 PM To: [EMAIL PROTECTED] Subject: Can I set the classpath for

RE: ejb:ejb-client usage

2004-02-09 Thread CaseyJD
What are the conceptual implications of this on the one-and-only-one artifact principal? Personally, I've defined an ejb-client subproject for each ejb, with pom ID -client, where the POM extends the parent directory's. Looks something like this: ../project.xml . . . ${basedir}/../src

RE: Are unit test includes and excludes inherited?

2004-02-05 Thread CaseyJD
Phrased as a feature request, I'd echo these sentiments... -j - John Casey Programmer/Analyst Gainesville Regional Utilities -Original Message- From: Sean Timm [mailto:[EMAIL PROTECTED] Sent: Thursday, February 05, 2004 3:35 PM To: Maven Users List Subject: RE: Are unit test includ

RE: Are unit test includes and excludes inherited?

2004-02-05 Thread CaseyJD
Your explanation is much easier to understand. :) -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, February 05, 2004 10:30 AM To: Maven Users List Subject: Re: Are unit test includes and excludes inherited? If you have this in parent : 1 .

RE: Are unit test includes and excludes inherited?

2004-02-05 Thread CaseyJD
The key word below is _merged_. That is, the XML structures are merged. So, if you have a first-level child element of the project element, it'll be inherited. Beyond that, if your n-level specification isn't within the dependencies declaration, it'll be overwritten by the child declaration. 1

RE: dependencies of dependencies

2004-01-22 Thread CaseyJD
Yeah, I think that functionality is on the way, but will not make the 1.0 release...I'm not actually on the development team, though, so I can't speak too intelligently about this. Unless I'm mistaken, you're looking to achieve closure of the set of dependencies and their implied dependencies, and

RE: dependencies of dependencies

2004-01-22 Thread CaseyJD
FYI, check out old archive messages referring to transitive dependencies. -john -Original Message- From: Ebersole, Steven [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 1:49 PM To: Maven Users List Subject: dependencies of dependencies Just wondering if there is a way throug

RE: including resources into target/classes

2004-01-20 Thread CaseyJD
Inside the section of the project.xml, try something like the following: ${basedir}/src/java <-- or whatever ... <-- unit tests . . <-- unit test configurations...you have unit tests, right? ;) . ${basedir}/src/java **/*.xml See if that

nomenclature question

2004-01-20 Thread CaseyJD
I'm trying to write a plugin for maven, which will de-archive a WAR or EAR, filter in environment-specific configurations, re-archive the application, backup the old version of the running app, and deploy the new version. I know that the words 'install' and 'deploy' have a distinct meaning in m

testing maven plugins

2004-01-13 Thread CaseyJD
Is there a standardized way of testing a maven plugin? I've developed one for enforcement of our in-house packaging and deployment processes, and I've been going through this install/test manual loop for like a day now. Is there a way that I can [easily] test the plugin prior to installation? Speci

project.xml jelly support

2003-10-27 Thread CaseyJD
I think I read something in the mail archive about the project.xml being just a big jelly script? In that message (I believe it from Jason), there was a warning not to abuse this fact...for our own good. :-) Anyway, I wanted to find out the level of jelly support provided in the project.xml. Does