Upgrading a .jar in maven's /lib directory for plugin..

2004-12-07 Thread Mitch Mattek
Hey, My plugin, I needed to upgrade the jelly-util from the somewhat old one released with Maven 1.01 (commons-jelly-tags-util-20030211.141939.jar).. I was replacing it in my /lib and someone suggested I could just put it as a dependency of my plugin's project.xml, but this doesn't work. Any ideas

Can't set plugin variables before bootstrap

2004-10-14 Thread Mitch Mattek
I'm trying to make a "bootstrap" from nothing build of our projects. I have a project, which you can pull down, then execute multiproject, so my thinking was. 1: execute maven cdp:bootstrap (this is my custom plugin) This would Unfortunately I

Mulitproject infinite regress..

2004-10-08 Thread Mitch Mattek
Ok, I have a master project.. 1 With subproject 2,3,4,5,6, etc. in subfolders. Originally, I had the "master" project I built multi from as a "side by side" with basedir=../ but I took that out hoping it was causing this problem, but alas, No matter how I adjust properties, I get an "infiinite regr

RE: Using more JSTL tag libraries in jelly?

2004-09-28 Thread Mitch Mattek
pe Leme [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 10:35 PM To: Maven Users List Subject: Re: Using more JSTL tag libraries in jelly? Mitch, On Mon, 2004-09-27 at 18:55, Mitch Mattek wrote: > I want to use the JSTL split function from JSTL "functions" library. > This i

Using more JSTL tag libraries in jelly?

2004-09-27 Thread Mitch Mattek
I want to use the JSTL split function from JSTL "functions" library. This is implemented in JSTL, but Maven isn't setup with jelly out of the box for it. How do I set up a new taglib for use in jelly? I know the JSTL taglib jar is already in the maven iblio repository, so how would I do that?

RE: Ant:copy to absolute path?

2004-09-08 Thread Mitch Mattek
ge- From: Jefferson K. French [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 07, 2004 2:32 PM To: Maven Users List Subject: Re: Ant:copy to absolute path? How is maven.cdp.riskserver.home defined? On Tue, 07 Sep 2004, at 13:19:34 [GMT -0400] Mitch Mattek wrote: > Hey, I've got

Ant:copy to absolute path?

2004-09-07 Thread Mitch Mattek
Hey, I've got to copy some files to an absolute target. I'm putting this is in a property, and trying to use the ant:copy, but maven keeps apending the relative path in front. The "todir" above is append the maven.build.dir in front of it. Is there some way to override this? ---

RE: Pass classpath to ant

2004-08-27 Thread Mitch Mattek
Ok, I guess I am just stupid. This isn't working. Yes, it echos a path, but it doesn't seem to be using this path to launch ant. This is a message. ${maven.junit.fork} ${base} Is ant going to use the $[base] as the launch classpath? That's

RE: Pass classpath to ant

2004-08-26 Thread Mitch Mattek
-Original Message- From: Jarrell, Maury [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 2:50 PM To: 'Maven Users List' Subject: RE: Pass classpath to ant You might try the "maven ant" goal. It creates a build.xml file that allows ant to build your project. Well, that builds

Pass classpath to ant

2004-08-26 Thread Mitch Mattek
Hey, I'm trying to slowly migrate our build system to maven. As step one, I'm just trying to use the maven jar dependency thing to download jar's then shell to ant scripts which have everything happening correctly. I have a custom plugin and am trying to do this cdp ant