Re: SNAPSHOT download overwrites more recent local file

2003-09-03 Thread Martin Skopp
On Tue, 2003-09-02 at 18:56, [EMAIL PROTECTED] wrote: Sounds like a bug to me. -- dIon Gillard, Multitask Consulting Filed in JIRA as MAVEN-772. I am sorry but I was unable to provide a patch - have no idea where to check the maven sources. If one helps me a little and tells me which classes

Re: bug in maven-xdoc-plugin-1.4-SNAPSHOT ?

2003-09-03 Thread Dirk Habighorst
reports report maven-checkstyle-plugin /report /reports used to be stripped to 'maven-checkstyle-plugin' in previous releases. Now I have to used: reports reportmaven-checkstyle-plugin/report /reports which is correct xml behaviour as I have learned now. [EMAIL PROTECTED] wrote:

RE: SNAPSHOT download overwrites more recent local file

2003-09-03 Thread Vincent Massol
I've also had several reports like this on my current project. I haven't been able yet to tell whether the problem was due to: - a bad machine date (either local machine or remote repo machine) - a web server not supporting if-modified-since - a bug I have looked at the source code and couldn't

RE: Problem with Jar-Plugin

2003-09-03 Thread Christian Goos
this should also be fixed for the war-plugin? -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 2:17 PM To: Maven Users List Subject: Re: Problem with Jar-Plugin maven.jar.index is a property for the rc1 release. If you want to use it,

Problem with Jar-Plugin Extension List

2003-09-03 Thread Christian Goos
Hi, Although I set the variable maven.jar.manifest.extensions.add==true the extension list is never created. So I had a look in the plugin source and replaced the original line j:if test=${maven.jar.manifest.extensions.add} == 'true' with j:set var=extensionOn

Re: simian report failure

2003-09-03 Thread Rafal Krzewski
Dominik Dahlem wrote: I had a look at the sources shipped with the plugin. The file SimianLog.java appears to have a bug (at least in my scenario). The simian.log file contains the line Processed a total of 123 lines in 4 files. The StringTokenizer created for this line expects the 10th token

Re: Problem with Jar-Plugin

2003-09-03 Thread Emmanuel Venisse
Done. I'll also fix it for ejb-plugin. - Original Message - From: Christian Goos [EMAIL PROTECTED] To: 'Maven Users List' [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 10:58 AM Subject: RE: Problem with Jar-Plugin this should also be fixed for the war-plugin? -Original

Re: [REQUEST] Upload Lang 2.0 to ibiblio

2003-09-03 Thread Jason Dillon
I take it back, it is the SNAPSHOT which is still referring to the old version. Can we update the SNAPSHOT plz? --jason On Wednesday, September 3, 2003, at 04:02 PM, Jason Dillon wrote: Does it take time for http://ibiblio.org/maven/commons-lang/jars/ to update? Still looks like the

Re: [REQUEST] Upload Lang 2.0 to ibiblio

2003-09-03 Thread Jason Dillon
Does it take time for http://ibiblio.org/maven/commons-lang/jars/ to update? Still looks like the previous version is there. --jason On Wednesday, September 3, 2003, at 09:52 AM, [EMAIL PROTECTED] wrote: Done. -- dIon Gillard, Multitask Consulting Blog:

Re: Including remote properties

2003-09-03 Thread Berin Loritsch
Jason van Zyl wrote: On Tue, 2003-09-02 at 15:46, Berin Loritsch wrote: The Avalon team would like to use their distribution heirarchy as a Maven remote repository. The only problem is the traffic it forces on the Apache servers. We would like to incorporate support from the mirrors redirection

Custom console-message listeners ?

2003-09-03 Thread Paul Libbrecht
Hi Maveners, It just crossed my mind that a very simple way to intergrate maven with jEdit would be to talk to jEdit's server directly feeding the console-messages by sending the appropriate bsh script-snippets. That looks pretty easy as soon as I know how to plug log-listeners... Ant used to

Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Berin Loritsch
Is there a magic flag to identify a runtime dependency from a compile time dependency? For example, Xerces and Xalan may be needed to compile some aspects of a project (some people use it to generate java source code), but never needed at run time. This will allow a number of things: * The

RE: Using reactor

2003-09-03 Thread Lester Ward
We use multiproject:install and it happily uses the reactor to compile and install all jars based on their dependency order. Not in beta 10. The multiproject plugin does not work in beta 10, because it's syntax when using j:set is incorrect (uses name instead of value). Can you show us

Re: Including remote properties

2003-09-03 Thread Jason van Zyl
On Wed, 2003-09-03 at 09:58, Berin Loritsch wrote: Jason van Zyl wrote: You are just trying to point your maven builds at the mirror cgi script? Where's the source for this little puppy and I'll take a look and maybe I can get a better grasp on the problem. Yep.

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Jason van Zyl
On Wed, 2003-09-03 at 10:07, Berin Loritsch wrote: Is there a magic flag to identify a runtime dependency from a compile time dependency? For example, Xerces and Xalan may be needed to compile some aspects of a project (some people use it to generate java source code), but never needed at run

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread dion
Why aren't the compile time dependencies, code generators etc in a separate plugin similar to the way the antlr plugin is? That way the project doesn't need to list those jars as dependencies. You could always add a property to the dependency (like the war and ear plugins do) and use that in

RE: Using reactor

2003-09-03 Thread dion
Lester Ward [EMAIL PROTECTED] wrote on 04/09/2003 12:20:50 AM: We use multiproject:install and it happily uses the reactor to compile and install all jars based on their dependency order. Not in beta 10. The multiproject plugin does not work in beta 10, because it's syntax when using

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Berin Loritsch
Jason van Zyl wrote: On Wed, 2003-09-03 at 10:07, Berin Loritsch wrote: Is there a magic flag to identify a runtime dependency from a compile time dependency? For example, Xerces and Xalan may be needed to compile some aspects of a project (some people use it to generate java source code), but

Re: Including remote properties

2003-09-03 Thread Paul Libbrecht
It would be good if this could support the mirroring procedure of SourceForge as well. Paul On Mercredi, sept 3, 2003, at 16:53 Europe/Paris, Jason van Zyl wrote: On Wed, 2003-09-03 at 09:58, Berin Loritsch wrote: Jason van Zyl wrote: You are just trying to point your maven builds at the

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Jason Dillon
You can specify properties for the dependency to indicate if it is runtime or not, then use that information to collect your runtime dependencies. Example: dependency idcommons-logging/id version1.0.3/version urlhttp://jakarta.apache.org/commons/logging/url

Re: Including remote properties

2003-09-03 Thread Berin Loritsch
Jason van Zyl wrote: On Wed, 2003-09-03 at 09:58, Berin Loritsch wrote: Jason van Zyl wrote: You are just trying to point your maven builds at the mirror cgi script? Where's the source for this little puppy and I'll take a look and maybe I can get a better grasp on the problem. If you log

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Henri Yandell
On 3 Sep 2003, Jason van Zyl wrote: There is no facility yet. But we've talked about it for a long time and we do have working code for it in experimental versions of Maven but the real crux of the problem is collecting POMs in the repositories so we can build the necessary graphs. In this

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Jason van Zyl
On Wed, 2003-09-03 at 11:09, Berin Loritsch wrote: Jason van Zyl wrote: Are you trying to assemble a container runtime? yes. You may want to look at the Plexus plugin. Most of the work is done there already and you can just take what you like. It assumes the presence of POMs in the repo

RE: Using reactor

2003-09-03 Thread Lester Ward
modules/web/project.xml (Builds foo.war) Must state a dependency on foo.jar No, it mustn't. It must state a dependency on bar.jar. You are misunderstanding the example. There is no foo.jar. A .war file is perfectly capable of containing its own code. In some cases (particularly for

Re: simian report failure

2003-09-03 Thread Emmanuel Venisse
I use cvs head too, but for me, all works fine. My simian log contains Processed a total of 6306 lines of code in 128 files Your simian jar comes from ibiblio or you downloaded it from simian site? - Original Message - From: Dominik Dahlem [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Lester Ward
properties typeruntime/type /properties D'oh! That should be: properties runtimetrue/runtime /properties - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Any pointers for plugin development?

2003-09-03 Thread Berin Loritsch
The old how to write a plugin in the WIKI is not enough to go by. I have a plugin I am developing as part of a larger application, and I want to ensure that it is built and installed. Unfortunately, the project.xml that it is used to define the project is not doubled to be where the plugin JAR

Re: Distinguishing between runtime and compile time dependencies

2003-09-03 Thread Berin Loritsch
Paul Libbrecht wrote: j:forEach var=artifact items=${pom.artifacts} j:set var=dependency value=${artifact.dependency}/ j:if test=${dependency.getProperty('runtime') == 'true'} ant:echoProcessing dependency: ${dependency.id}/ant:echo ant:mkdir

Docs for latex plugin miss a needed property

2003-09-03 Thread Nelson Arapé
Hi all The latex plugin requieres a maven.latex.docs property which contains a space-separated list of files wanted for latex generation, but the docs makes no reference about it. If someone provides me with enough information I could submit a path for this simple issue. By the way sould I

Re: Any pointers for plugin development?

2003-09-03 Thread Trygve Laugstøl
On Wed, 3 Sep 2003, Berin Loritsch wrote: The old how to write a plugin in the WIKI is not enough to go by. I have a plugin I am developing as part of a larger application, and I want to ensure that it is built and installed. This is your lukcy day :) I wrote a new version yesterday night.

RE: Using reactor

2003-09-03 Thread dion
Lester Ward [EMAIL PROTECTED] wrote on 04/09/2003 01:49:23 AM: modules/web/project.xml (Builds foo.war) Must state a dependency on foo.jar No, it mustn't. It must state a dependency on bar.jar. You are misunderstanding the example. Sorry. [snip] The problem is coming where the

Re: [REQUEST] Upload Lang 2.0 to ibiblio

2003-09-03 Thread dion
How about -RELEASE? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Jason Dillon [EMAIL PROTECTED] wrote on 04/09/2003 03:43:08 AM: If there was a latest tag or something sure... which is what I really want... a latest release link. --jason On

Re: JUnit Test Converage Reporting

2003-09-03 Thread dion
The Clover plugin? The new jcoverage plugin? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Bateman, Patrick eMEDIA [EMAIL PROTECTED] wrote on 04/09/2003 04:19:23 AM: Has anyone out there used a test coverage tool within Maven. I want to generate a