Plugin install

2004-08-24 Thread Jesper Linvald
Hello all, I find myself having trouble installing my plugin. I use the command plugin:install-now after which I expect to be able to run my plugin. I try deleting the various cache files, running plugin:install etc. In the end maven says that the goal I am trying to run dosent existI

Re: Plugin install

2004-08-24 Thread Shinobu Kawai
Hi Jesper, I use the command plugin:install-now after which I expect to be able to run my plugin. I try deleting the various cache files, running plugin:install etc. In the end maven says that the goal I am trying to run dosent existI checked the cache folder and the unpacked plugin

Re: Plugin install

2004-08-24 Thread Jesper Linvald
Hi Shinobu, yes I read it and I have been developing plugins for months now - the thing is that it is sporadic, only sometimes Maven dosent recognize my goals... Jesper Linvald MAERSK DATA TRANSPORT Tel no.: +45 3911 1891 e-mail: [EMAIL PROTECTED] Shinobu Kawai [EMAIL PROTECTED]

Re: site:deploy with putty

2004-08-24 Thread Christian Mouttet
Per, we use Putty no our Windows clients for depolyment to a Linux repository machine. This is how it works for us. start 'puttygen.exe' to generate public/private keys: - 'SSH2 DSA' - randomly move your mouse pointer over the window - save public and private key - add an user on the remote

Re: site:deploy with putty

2004-08-24 Thread Per Abich
I have now solved the problem. I have to have the following line in my build.properties: maven.scm.cvs.rsh=plink The maven.ssh.executable=c:/programme/putty/plink maven.scp.executable=c:/programme/putty/pscp lines are ignored by site:deploy Thanks for your help Regards Per Abich On Tue, 24

Tag library requested that is not present.

2004-08-24 Thread Nadeem Bitar
I am getting the following error: Tag library requested that is not present: 'maven' in plugin: 'maven- xdoclet-plugin-1.2.2-SNAPSHOT' Why is maven trying to download this at the first place, I have not specified any snapshot dependencies?

Re: maven:maven jelly tag

2004-08-24 Thread Jefferson K. French
Thanks, Brett. I thought my -D override wasn't being taken by a goal in a subproject invoked with maven:maven. Based on your response I figured I had a bug in my maven.xml. It turns out I had a line in the subproject that explicitly loaded a property file, thereby overriding the -D override.

Sun Binary Dependencies

2004-08-24 Thread Ricardo Gladwell
Hi All, At the moment one of my maven projects depends upon JARs distributed by Sun (e.g. JTA). I'm manually downloading and extracting the ZIPs from Sun and copying the JARs to my local repository. Ideally, I would like some way to automatically download the ZIPs and extract the relevant

Re: httpunit plugin

2004-08-24 Thread John Taylor
You can just include your httpunit tests in with your other JUnit tests and they should get compiled and run. John - Original Message - From: Nathan Coast [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Monday, August 23, 2004 4:30 AM Subject: Re: httpunit plugin

RE: What's wrong with my system?

2004-08-24 Thread Arnaud HERITIER
Did you try to manually unjar this file to see if it is not corrupted? Arnaud -Message d'origine- De : Charles N. Harvey III [mailto:[EMAIL PROTECTED] Envoyé : mardi 24 août 2004 16:01 À : Maven Users List Objet : What's wrong with my system? Everything I do gets me this error:

Re: What's wrong with my system?

2004-08-24 Thread John Casey
/home/charvey/.maven/cache/maven-nsis-plugin-1.1/META-INF/MANIFEST.MF Does the /home/charvey/.maven/cache directory exist? You might be able to rebuild your plugin cache by deleting this directory, and re-running maven...also, off the top of my head, you might have a privs problem with

Re: What's wrong with my system?

2004-08-24 Thread Charles N. Harvey III
Must be a bad sector of the disk or something. Because if I change the version number and run maven jar:install it installs just fine. But that one particular file is always corrupt. How annoying. Charlie Charles N. Harvey III said the following on 8/24/2004 10:50 AM: I think it was a problem

Re: What's wrong with my system?

2004-08-24 Thread John Casey
What specifically do you mean by corrupt? Can you execute 'jar tvf' against it, or is it too whacked? Charles N. Harvey III wrote: I think it was a problem with permissions and the cache. I ran maven as root and it ran. Then I ran it as charvey and it ran fine. But I have another problem

Re: What's wrong with my system?

2004-08-24 Thread Charles N. Harvey III
That works fine. And when I jar -xf that file it extracts. But maven can't see it at all. And I have a really hard time installing over it. Its ok. I just changed the version. Now I just have to go find all the places that I used it and change the project.xml. Charlie John Casey said the

jar override paths

2004-08-24 Thread Adam Fisk
Hi Everyone- I'm using the jar override property to use local jars in two projects. One project uses the reactor to call the build of the other project. The problem is that each project includes a property maven.myproject.jars specifying the location of the jar files. In one

Re: Sun Binary Dependencies

2004-08-24 Thread matthew.hawthorne
Carlos Sanchez wrote: You can extract them to a dir of your project and use jar override, then you can distribute it with the rest of your files. A similar option would be to create a separate local repository which is checked in with the rest of your project. Something like this: projectRoot/

Re: Sun Binary Dependencies

2004-08-24 Thread David Jencks
You may also wish to investigate whether there are non-sun jars available that have more amenable licensing terms. For instance, geronimo has a jta jar. http://www.ibiblio.org/maven/geronimo-spec/jars/geronimo-spec-jta-1.0- M1.jar many thanks, david jencks On Aug 24, 2004, at 4:04 AM,

Re: jar override paths

2004-08-24 Thread Jrg Schaible
Adam Fisk wrote: Hi Everyone- I'm using the jar override property to use local jars in two projects. One project uses the reactor to call the build of the other project. The problem is that each project includes a property maven.myproject.jars specifying the location of the jar files. In

Re: What's wrong with my system?

2004-08-24 Thread Brett Porter
that still sounds like a file permission problem to me. - Brett On Tue, 24 Aug 2004 10:58:26 -0400, Charles N. Harvey III [EMAIL PROTECTED] wrote: That works fine. And when I jar -xf that file it extracts. But maven can't see it at all. And I have a really hard time installing over it.

Re: Tag library requested that is not present.

2004-08-24 Thread Brett Porter
no, it just means that the xdoclet plugin has: xmlns:maven=maven in it, but the maven namespace does not exist (maybe it should be jelly:maven). If xdoc doesn't have any maven:... tags, then that part should be removed. The xdoclet plugin is not maintained by the maven developers. - Brett On

Re: Tag library requested that is not present.

2004-08-24 Thread matthew.hawthorne
Nadeem Bitar wrote: I am getting the following error: Tag library requested that is not present: 'maven' in plugin: 'maven- xdoclet-plugin-1.2.2-SNAPSHOT' Why is maven trying to download this at the first place, I have not specified any snapshot dependencies? Also, I wouldn't really call this an

Re: Tag library requested that is not present.

2004-08-24 Thread Nadeem Bitar
The xdoclet plugin has been a great source of frustration. Last night i opted out and just wrote a goal to do all my xdoclet stuff but the goal is now over 200 lines which kind of defeats the purpose of using maven. Also what I considered an error was the plugin trying to download the snapshot

RE: aspectj in multiproject

2004-08-24 Thread thorsten maus
hehe .. thanks ... makes things easier .. and i do not get nasty classpath errors .. greetings from berlin ;o) __ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail

Re: Tag library requested that is not present.

2004-08-24 Thread Brett Porter
that line does not indicate an attempt to download a snapshot, and as mentioned it is just a warning (sorry it is not displayed as such). If you think the xdoclet plugin is a source of frustration, it is probably best to tell the developers of it that, and to offer some constructive criticism.

Re: Sun Binary Dependencies

2004-08-24 Thread Trygve Laugstøl
Geronimo has implementations of a lot of the j2ee specifiactions. They can be found in http://www.ibiblio.org/maven/geronimo-spec/jars/ -- Trygve On Tue, Aug 24, 2004 at 12:04:58PM +0100, Ricardo Gladwell wrote: Hi All, At the moment one of my maven projects depends upon JARs distributed by

Re: aspectj in multiproject

2004-08-24 Thread Andreas Guther
I am not so sure about that, but I believe that for having multiple projects using the same aspects you might need to provide the aspects in a jar file. Andreas thorsten maus wrote: hi there .. has anyone made some experiences using the aspectj plugin in a multiproject... 1. should i create an