Switch of evolutin with StatCVS Plugin 2.4

2004-06-25 Thread Martin Jaeger
Hi together I'm using RC3 with StatCVS Plugin 2.4 (0.9.3). I have big problems with the evolutionmatrix. Because it generates a 200 MB HTML file. So I don't need this matrix and want to disable it. Has someone an idea, how to do this? I read about adding a statcvs.xml file but I have no idea

RE: How to get xdoclet generating necessary files thru maven?

2004-06-25 Thread Chuck Daniels
Why have you overridden the xdoclet:ejbdoclet goal in your maven.xml? Try removing it from your maven.xml so that the goal by the same name in the plugin can run. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 3:38 AM To: [EMAIL

RE: comma seperated value in project.properties

2004-06-25 Thread Chuck Daniels
Yes. Use the util:tokenize jelly tag to create a list from the comma-separated property value. Then you can iterate over the list using j:forEach. There are plenty of examples throughout the plugins. Search your plugin.jelly files. -Original Message- From: [EMAIL PROTECTED]

about transitive dependencies

2004-06-25 Thread Nicolas De Loof
Some simple (?) questions about (future) transitive dependencies : If jar A declares in his POM some dependencies, let's say jaxb, jaxbimpl and easymock - jaxb is used at build time - jaxb impl is needed at runtime - easymock is used in junit tests If my webapp depends on this jar, will

RE: Switch of evolutin with StatCVS Plugin 2.4

2004-06-25 Thread Eric Pugh
Ahh! I think I had the same issue as well... It looks like you'll need to tweak the plugin to take the option. In the call to the class, I don't see the parameter to pass it in: ant:java classname=de.berlios.statcvs.xml.Main fork=true j:if test=${!empty(maven_opts)}

Re: Switch of evolutin with StatCVS Plugin 2.4

2004-06-25 Thread Brett Porter
can someone submit the fix to statcvs? I think this has bitten me too. On Fri, 25 Jun 2004 14:40:07 +0200, Eric Pugh [EMAIL PROTECTED] wrote: Ahh! I think I had the same issue as well... It looks like you'll need to tweak the plugin to take the option. In the call to the class, I don't

Re: web.xml and maven.war.webxml

2004-06-25 Thread Brett Porter
if you open up the war, I think you'll find the correct one is inside there, it just doesn't get copied as part of war:webapp. Maybe it should be: if you think so, record it in JIRA. - Brett On Fri, 25 Jun 2004 07:32:01 +0200, Onno van der Straaten [EMAIL PROTECTED] wrote: Hi all, I am a

Re: web.xml and maven.war.webxml

2004-06-25 Thread Nicolas De Loof
What version of maven / war plugin are you using ? I use war:webapp goal with maven.war.webxml=${basedir}/src/conf/myweb.xml and it is copied into target/project/WEB-INF/web.xml. Nico. if you open up the war, I think you'll find the correct one is inside there, it just doesn't get copied

RE: How to get xdoclet generating necessary files thru maven?

2004-06-25 Thread Ryan Sonnek
please read the wiki page again. the example posted on the wiki specifically AVOIDS the xdoclet plugin, and instead uses maven goals to do the same work. the plugin and maven goals have nothing in common, and i would suggest using one or the other. I wrote the wiki pages in question, and

Re: How to get xdoclet generating necessary files thru maven?

2004-06-25 Thread Eric Hauser
I'm not sure why everyone has trouble getting xdoclet up and running, but I would definately recommend just using Ant code in your maven.xml. The hardest part is making sure you have the classpath set up properly. The maven-xdoclet plugin is a little complicated (not to mention it is some of

Duplicate artifact but different types

2004-06-25 Thread Kevin Pearcey
Is it possible to have a pair of duplicate dependency but with different types? I want to declare this for a jsp tag, so I have a jar tld to get from the repository, but only one is ever fetched (RC-3). Jira has this closed issue http://jira.codehaus.org/browse/MAVEN-572 which claims its fixed

Re: Duplicate artifact but different types

2004-06-25 Thread Brett Porter
it should work - file a JIRA issue and I'll verify it soon. On Fri, 25 Jun 2004 17:12:34 +0100, Kevin Pearcey [EMAIL PROTECTED] wrote: Is it possible to have a pair of duplicate dependency but with different types? I want to declare this for a jsp tag, so I have a jar tld to get from the

Maven Changelog Plugin 1.6 Released

2004-06-25 Thread Brett Porter
The maven team is pleased to announce the Maven Changelog Plugin 1.6 release! http://maven.apache.org/reference/plugins/changelog/ Changes in this version include: Fixed bugs: o Prevent any NPE depending on certain repository definition conditions Issue: MPCHANGELOG-34. Thanks to

Maven IDEA Plugin 1.5 Released

2004-06-25 Thread Brett Porter
The maven team is pleased to announce the Maven IDEA Plug-in 1.5 release! http://maven.apache.org/reference/plugins/idea/ IDEA Plugin for Maven. Requires Maven 1.0 RC3. Changes in this version include: New Features: o match module type to artifact type Issue: MPIDEA-5. To automatically

Maven Test Plugin 1.6.2 Released

2004-06-25 Thread Brett Porter
The maven team is pleased to announce the Maven Test Plug-in 1.6.2 release! http://maven.apache.org/reference/plugins/test/ Run JUnit tests. Requires Maven 1.0 RC2. Changes in this version include: Fixed bugs: o honour source modifications for test compilation Issue: MPTEST-32. Thanks

Maven Artifact/Deploy plugin 1.3 Released

2004-06-25 Thread Brett Porter
The maven team is pleased to announce the Maven Artifact Plugin 1.3 release! http://maven.apache.org/reference/plugins/artifact/ Please note: you must remove the deploy plugin if you install this plugin. Changes in this version include: New Features: o Allow non-passive FTP Issue:

Maven Distribution Plugin 1.6 Released

2004-06-25 Thread Brett Porter
The maven team is pleased to announce the Maven Distribution Plugin 1.6 release! http://maven.apache.org/reference/plugins/dist/ NOTE: this version of the plugin requires Artifact 1.3 to be installed Changes in this version include: Changes: o Use artifact plugin for deployments To

Maven 2 - development whereabouts

2004-06-25 Thread Alex Shneyderman
I wanted to take a pick at Maven 2 source. How do I find it in CVS? Is it in HEAD or somewhere else? Thanks, Alex. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Classes in Test

2004-06-25 Thread Brett Porter
that's the correct behaviour - tests should not be part of the release. You should move these test classes to project C which is used by both. On Fri, 25 Jun 2004 17:39:06 -0400, Sonnathi, Venkat [EMAIL PROTECTED] wrote: Hi, I have two projects Project A, Project B. Project B depends on

META-INF in Jar file

2004-06-25 Thread David R Robison
I am writing a java sound SPI and I need to place some configuration file in the META-INF/services directory in the Jar file. What is the easyest way to do this? Thanks, David Robison - To unsubscribe, e-mail: [EMAIL PROTECTED]

RE: Maven Artifact/Deploy plugin 1.3 Released

2004-06-25 Thread J. Matthew Pryor
I seems to have mucked something up, I get the following: C:\projmaven plugin:download -DgroupId=maven -DartifactId=maven-artifact-plugin -Dversion=1.3 __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.0-rc3 Plugin cache

Re: Maven Artifact/Deploy plugin 1.3 Released

2004-06-25 Thread Brett Porter
No, that would be my mistake... sorry. I forgot that I added a new class dependency inside Maven's core to support this. The plugin is going to require RC4 which will be released in the next few hours. Alternatively, you can build from MAVEN-1_0-BRANCH in CVS which is almost equivalent (there is

RE: Maven Artifact/Deploy plugin 1.3 Released

2004-06-25 Thread J. Matthew Pryor
Ouch. Oh well I guess I can wait a few hours. I tend to be an early adopter anyway ;-) Thanks, jmp -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Saturday, June 26, 2004 10:01 AM To: Maven Users List; [EMAIL PROTECTED] Subject: Re: Maven Artifact/Deploy