Re: Question about dependency

2004-01-19 Thread Marco Tedone
How do I put it in the local-repo? Marco - Original Message - From: [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Monday, January 19, 2004 12:25 AM Subject: Re: Question about dependency If it's a dependency, it must be in the local repo. -- dIon Gillard, Multitask

Re: Subversion repository connection string example

2004-01-19 Thread Mikael Lundgren
Hi, sure i do ;-) Here is a snit from my project.xml file, sligtly edited to avoid a rush of testers connecting to my server ;-) repository connection scm:svn:http://name.domain.com/repos/leif/dev/trunk /connection urlhttp://name.domain.com/repos/leif/url /repository To

Re: User input for Continuum

2004-01-19 Thread Rafal Krzewski
Jason van Zyl wrote: Howdy, I have Continuum up and running using the new maven-scm stuff and the new maven components so I wanted to get some input on how people would like to use it. All the information required for checking out and building are contained within the POM so how would you

Problems matching last modified for files

2004-01-19 Thread Endre Meckelborg Rognerud
Hello! I'm trying to write a deploy goal for some config files, but I don't understand how I can match the lastModified date to see if I need to copy a file or not. This runs well, but the body of the if tag is never reached even if it should. Alternative 1: j:if test=${file.lastModified()

Update ibiblio with '-current' simlinks for versioning?

2004-01-19 Thread Darren Hartford
Hey all, Just brainstorming. Been working with the 'maven plugin:download' to do updates of the maven plugins. A bit frustrating to keep looking to find what the current version is to put it in, instead of just saying 'current' version for the last Stable version. (and, keeping with the

Re: Problems matching last modified for files

2004-01-19 Thread Jefferson K. French
I don't know much about Jelly, but if the stuff in squiggly braces is supposed to be Java, don't you want a instead of gt? Another alternative to try is Ant's uptodate task. Jeff On Mon, 19 Jan 2004, at 13:40:16 [GMT +0100] Endre Meckelborg Rognerud wrote: Hello! I'm trying to write a

Re: Maven Plugin For Weblogic

2004-01-19 Thread Siegfried Göschl
Hi James, could you sent me also a copy since I have to look at the automatic deployment with Bea WebLogic ... :-) What are the release plans for this plugin? Will it become a standard Maven plugin?! Thanks in advance Siegfried Goeschl On 16 Jan 2004 at 14:56, James CE Johnson wrote:

JSL applyTemplates Question

2004-01-19 Thread Troy Thibodeaux
Hi Gilles, Thanks for your suggestion. I believe, though, that the fix you point to applies to a related but slightly different problem than the one I'm reporting. In the example from site.jsl, it appears that jelly is losing the context for an absolute XPath. The jsl writer therefore

Re: Maven Plugin For Weblogic

2004-01-19 Thread Emmanuel Venisse
I'm +1 for it. Emmanuel - Original Message - From: Siegfried Göschl [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, January 19, 2004 6:16 PM Subject: Re: Maven Plugin For Weblogic Hi James, could you sent me also a copy since I have to

AspectJ Plugin

2004-01-19 Thread Keith F Irwin
Folks-- How mature is the AspectJ plugin? Is it (basically) ready for use, even if the goals/props aren't yet documented on its site? Curious. Keith - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Problems matching last modified for files

2004-01-19 Thread Endre Meckelborg Rognerud
Jefferson K. French (19.01.2004 16:29): I don't know much about Jelly, but if the stuff in squiggly braces is supposed to be Java, don't you want a instead of gt? I have tried this with no luck :( Another alternative to try is Ant's uptodate task. The problem is that I have a forEarch loop to

Re: Problems matching last modified for files

2004-01-19 Thread Jefferson K. French
If your goal is just to copy only those files that have been modified, won't Ant's copy task work for you? By default it only copies files that have been modified. On Mon, 19 Jan 2004, at 20:04:04 [GMT +0100] Endre Meckelborg Rognerud wrote: Jefferson K. French (19.01.2004 16:29): I don't

RE: AspectJ Plugin

2004-01-19 Thread Vincent Massol
-Original Message- From: Keith F Irwin [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 19:40 To: Maven Users List Subject: AspectJ Plugin Folks-- How mature is the AspectJ plugin? Is it (basically) ready for use, even if the goals/props aren't yet documented on its site?

BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
I'm using bouncycastle to build a pgp signature plugin for Maven. Does anyone know who placed the bouncycastle jars in the repository? I'd like to get the pgp jar uploaded there. http://www.ibiblio.org/maven/bouncycastle/jars/ thanks, Mark -- Mark Diggory Software Developer Harvard MIT Data

Linkcheck and FindBugs OutOfMemoryError

2004-01-19 Thread Jake Ewerdt
I'm getting a java.lang.OutOfMemoryError when running the Linkcheck and FindBugs plugins on my project. I have these env vars set: export JAVA_OPTS=-mx1024m export ANT_OPTS=-Xmx1024m export MAVEN_OPTS=-Xmx1024m Here are the errors: maven-linkcheck-plugin: Not using a proxy Found 0 files so

RE: Re: Subversion repository connection string example

2004-01-19 Thread Brett Porter
Alex, I have this sorted out - I'll commit and post to directory-dev shortly. I think it needs to be something like: scm:svn:http://svn.apache.org:repos/asf/incubator:directory/trunk I hope the maven-scm connection URL parser is smarter and doesn't require 6 tokens just for the fun of it :)

AspectJ and Web Archives (was RE: AspectJ Plugin)

2004-01-19 Thread Keith F Irwin
Vince-- I notice in the plugin.jelly notes of the CVS version of the aspectj plugin that what you've got really doesn't work for WAR files since the war process does not call jar:jar. Alas, but pretty much all my work in Java ends up in a war file. You mention being able to weave into classes,

Re: Linkcheck and FindBugs OutOfMemoryError

2004-01-19 Thread dion
Disable the report. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Jake Ewerdt [EMAIL PROTECTED] wrote on 20/01/2004 08:17:15 AM: I'm getting a java.lang.OutOfMemoryError when running the Linkcheck and FindBugs plugins on my project. I have these

Re: Question about dependency

2004-01-19 Thread dion
Copy the file there. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Marco Tedone [EMAIL PROTECTED] wrote on 19/01/2004 06:07:06 PM: How do I put it in the local-repo? Marco - Original Message - From: [EMAIL PROTECTED] To: Maven Users

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread dion
I believe it was Jason. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Mark R. Diggory [EMAIL PROTECTED] wrote on 20/01/2004 07:22:37 AM: I'm using bouncycastle to build a pgp signature plugin for Maven. Does anyone know who placed the bouncycastle

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
Ok, Jason, can I get this jar published? http://www.bouncycastle.org/download/bcpg-jdk13-121.jar thanks, Mark [EMAIL PROTECTED] wrote: I believe it was Jason. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Mark R. Diggory [EMAIL PROTECTED] wrote on

Re: Question about dependency

2004-01-19 Thread Marco Tedone
If my local repo is ~/.maven/repository I've got already the files there. Marco - Original Message - From: [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 12:42 AM Subject: Re: Question about dependency Copy the file there. -- dIon Gillard,

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread dion
Done. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Mark R. Diggory [EMAIL PROTECTED] wrote on 20/01/2004 12:02:34 PM: Ok, Jason, can I get this jar published? http://www.bouncycastle.org/download/bcpg-jdk13-121.jar thanks, Mark [EMAIL

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
What is a POJO? I'm a little naive... Brett Porter wrote: If SignedFileProcessor is a POJO, add a flag with accessors, then in jelly you can use ${verify.errorFlag} (which calls isErrorFlag()) Cheers, Brett -Original Message- From: Mark R. Diggory [mailto:[EMAIL PROTECTED] Sent:

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
If I make public void verifyFile() throws MavenException { public boolean verifyFile() throws MavenException { is there a way I can capture the return value from the jellybean? -Mark Mark R. Diggory wrote: What is a POJO? I'm a little naive... Brett Porter wrote: If SignedFileProcessor is

RE: BouncyCastle PGP Signature plugin

2004-01-19 Thread Brett Porter
Plain Old Java Object. It sounds as if it is (ie it just extends Object or nothing, it isn't a jelly tag or an EJB or anything else). Cheers, Brett -Original Message- From: Mark R. Diggory [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 January 2004 3:39 PM To: Maven Users List

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
Yes it extends an abstract class that I wrote public class SignedFileProcessor extends AbstractSignatureBean { public abstract class AbstractSignatureBean { -Mark Brett Porter wrote: Plain Old Java Object. It sounds as if it is (ie it just extends Object or nothing, it isn't a jelly tag or an

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
After some digging I found this: http://jakarta.apache.org/commons/jelly/libs/define/tags.html#define:jellyBean theres an attribute called varAttribute I suspect it returns a value somehow, But what it really does seemed alittle over my head in the description. Brett Porter wrote: Not to my

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread John Casey
I was messing with this very problem the other day, and I _think_ the varAttribute attribute allows the redefinition of the variable attribute used to name the binding of the _tag_ in the jelly context. I don't know if this tag would allow one to gain access to the underlying bean (I suspect not),

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
Thanks, that cleared that up. John Casey wrote: I was messing with this very problem the other day, and I _think_ the varAttribute attribute allows the redefinition of the variable attribute used to name the binding of the _tag_ in the jelly context. I don't know if this tag would allow one to

RE: BouncyCastle PGP Signature plugin

2004-01-19 Thread Brett Porter
I think that's the one :) -Original Message- From: Mark R. Diggory [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 January 2004 4:05 PM To: Maven Users List Subject: Re: BouncyCastle PGP Signature plugin Mark R. Diggory wrote: goal name=signature:verify ...

Re: BouncyCastle PGP Signature plugin

2004-01-19 Thread Mark R. Diggory
Ok, last question, I promise: If I make verifyFile return a value: public boolean verifyFile() throws MavenException { can I still use it in: define:jellybean name=verify method=verifyFile className=org.apache.maven.signature.SignedFileProcessor/ for those who still