dir attribute for unit tests?

2004-02-06 Thread Keith Irwin
Folks-- How come I get this message with ever test case: dir attribute ignored if running in the same VM How do I get rid of it? I really don't want my unit tests running in the same VM, if that's what this is indicating. Thanks! Keith

RE: dir attribute for unit tests?

2004-02-06 Thread Keith Irwin
On Fri, 2004-02-06 at 13:59, Stephane Nicoll wrote: maven.junit.fork=true in your proect.properties Thanks! I know if I go look for that property, NOW I'll find it. ;) Keith Regards, Stephane -Original Message- From: Keith Irwin [mailto:[EMAIL PROTECTED] Sent: Fri 2/6/2004

Optional Ant Tasks in Maven?

2004-01-20 Thread Keith Irwin
Folks-- How do I get the optional ant tasks to work for a maven.xml goal? I need to run the JSP Compiler (jspc task) to verify that my JSP pages will compile. I've tried creating a dependency, and indeed, the ant-optional jar is downloaded, but I'm not sure that maven itself sees it when it

Re: Optional Ant Tasks in Maven?

2004-01-20 Thread Keith Irwin
Nevermind. Included the depenencies (forgot the tomcat/jars/jasper* stuff) and used maven.depenency.classpath (less the ${} stuff) and it all worked out. Keith On Tue, 2004-01-20 at 10:21, Keith Irwin wrote: Folks-- How do I get the optional ant tasks to work for a maven.xml goal? I need

That License Page

2004-01-16 Thread Keith Irwin
Folks-- I (now) explicitly set the reports I want to produce (mainly to include cactus testing), but now find that the license page doesn't show up. Obviously not a show stopper. Which plugin can I add (or research) to my reports list to get that thing to show up? Thanks, Keith

Constructing Dates on the Fly?

2004-01-15 Thread Keith Irwin
Folks-- I need to rename my war file to meet some hosting / production /process requirement. Changing the name is no problem. However, I'd like to be able to insert a date in the middle of it so I can do something like: project-date-lifecycle.war Is there an obvious way to get a date

Re: Constructing Dates on the Fly?

2004-01-15 Thread Keith Irwin
at 15:21, Keith Irwin wrote: Folks-- I need to rename my war file to meet some hosting / production /process requirement. Changing the name is no problem. However, I'd like to be able to insert a date in the middle of it so I can do something like: project-date-lifecycle.war

RE: Constructing Dates on the Fly?

2004-01-15 Thread Keith Irwin
: Keith Irwin [mailto:[EMAIL PROTECTED] Sent: Friday, 16 January 2004 10:21 AM To: Maven Users List Subject: Constructing Dates on the Fly? Folks-- I need to rename my war file to meet some hosting / production /process requirement. Changing the name is no problem

maven changelog plugin time zone?

2004-01-08 Thread Keith Irwin
Folks-- Generating a changelog report is fun! But, alas, all my changes seem to be GMT, which, for me, means about 8 hours ahead of time. I looked through the changelog plugin pages but can't find anything about the time zone. Likewise the maven properties themselves and the xdoc properties.

Re: Mutliple source directories in project.xml

2004-01-08 Thread Keith Irwin
On Thu, 2004-01-08 at 00:43, [EMAIL PROTECTED] wrote: I gather one can circumvent this by modifying the appropriate property/variable in a preGoal (like maven.compile.src.set), but that would add to the maintenance workload and really it'd just be a hack. For those of us who haven't been

Re: Mutliple source directories in project.xml

2004-01-08 Thread Keith Irwin
On Thu, 2004-01-08 at 18:17, Keith Irwin wrote: On Thu, 2004-01-08 at 00:43, [EMAIL PROTECTED] wrote: I gather one can circumvent this by modifying the appropriate property/variable in a preGoal (like maven.compile.src.set), but that would add to the maintenance workload and really

Re: What is the proper way to handle resource bundles when unit testing?

2004-01-01 Thread Keith Irwin
On Thu, 2004-01-01 at 20:47, Chad Woolley wrote: Hi, I use a resource bundle in my app. In my ResourceManager class, I load it like this: ClassLoader classLoader = this.getClass().getClassLoader(); resourceBundle = ResourceBundle.getBundle(resourceFileName, locale,

Simple Cactus Question (I Hope)

2003-12-31 Thread Keith Irwin
Folks-- After running cactus:test, and assuming I get some failures, I can run cactus:report to produce the cactus-report.xml. So far so good. How do I then turn that report into html so I can view the results in a browser rather than, say, scrolling back through my console past lots of ugly

Re: Help please.

2003-12-31 Thread Keith Irwin
On Wed, 2003-12-31 at 08:34, Mostashfi, Ali wrote: Hello, Hi! Anyone know how one can control the left-hand-side navigation bar's width of the site generated files? I'm not sure. There's a way to work with stylesheets. You might check the site plugin documentation page. I haven't

build finesse documentation?

2003-12-30 Thread Keith Irwin
Folks-- I'm trying to convert from ant to maven, but can't find anything about how to use maven.xml to do some fancy stuff. For instance, what I want to do is be able to filter out certain classes, and use a different web.xml depending on the lifecycle of the app. Using the ant war task, I can

Re: build finesse documentation?

2003-12-30 Thread Keith Irwin
, you can't do that, for instance. Well, I'll play around. Keith Keith Irwin wrote: Folks-- I'm trying to convert from ant to maven, but can't find anything about how to use maven.xml to do some fancy stuff. For instance, what I want to do is be able to filter out certain

Re: build finesse documentation?

2003-12-30 Thread Keith Irwin
Okay, I'm getting it. You can use jelly inside the goals to take care of some of the things that ant did with its target directive. I can't wait for the book on this subject. ;) Keith On Tue, 2003-12-30 at 13:48, Keith Irwin wrote: On Tue, 2003-12-30 at 13:36, __matthewHawthorne wrote: You