Re: issue with jetty plugin????

2006-04-04 Thread Boris Lenzinger
I've read somewhere (cannot remember where) the server must be stopped via Ctrl-C...There is no other way from what I remember. I start jetty using the command line with jetty:run. The command line does not give me back the control and to stop it, I must use Ctrl-C. What is the option -P ? r

Re: maven-idea-plugin fails (from trunk)

2006-04-04 Thread Edwin Punzalan
Fixed the test and the NPE in svn. Thanks for asking, btw. ^_^ Arik Kfir wrote: hey everyone Has anyone been able to build the 'maven-idea-plugin' from the trunk, using a trunk-built maven from the 2.0.x branch? The org.apache.maven.plugin.idea.IdeaModuleTest fails with a "Dependency is p

Re: maven-idea-plugin fails (from trunk)

2006-04-04 Thread Arik Kfir
cooland when you activate the plugin, do you also get the "Unable to build dependencies" error? (I tried it on a simple hello world project too) I'm now trying it with the standard 2.0.3 release, to see if the error results from a regression in the 2.0.x branch or it is a bug in the plugin its

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread dan tran
http://mojo.codehaus.org/build-helper-maven-plugin/howto.html basically right after you use exec or antrun plugin to build your swf file, you can use build-helper-maven-plugin:attach-artifact goal to configure maven to install or deploy your swf to repo as needed On 4/4/06, Martin Cooper <[EMAIL

issue with jetty plugin????

2006-04-04 Thread raja bangaru
Hi guys, I started the jetty plugin using the command maven jetty:run now how do i need to stop it?? When i start the jboss server..i'm getting the error that 8080 port is already in use... it might be getting used by jetty.. so can anyone tell me how to stop the jettly i dont find any goals for

Re: maven-idea-plugin fails (from trunk)

2006-04-04 Thread Edwin Punzalan
Hi, I'm currently adding unit tests to this plugin and I "unknowingly" put a hardcoded drive into the tests... I'll fix that asap. Arik Kfir wrote: hey everyone Has anyone been able to build the 'maven-idea-plugin' from the trunk, using a trunk-built maven from the 2.0.x branch? The org.apa

RE: TimeZone Element in pom.xml

2006-04-04 Thread Jörg Schaible
Hi Ian, [EMAIL PROTECTED] wrote on Tuesday, April 04, 2006 7:09 PM: > public static TimeZone getTimeZone(String ID) > Gets the TimeZone for the given ID. > Parameters: > ID - the ID for a TimeZone, either an abbreviation such as > "PST", a full name such as "Am

RE: SCM plugin for MKS SI in M2

2006-04-04 Thread Sharma, Jaikumar
Oops! Typo. It would be really helpful to lots of people, if somebody can take the initiative! -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 10:53 AM To: Maven Users List Subject: Re: SCM plugin for MKS SI in M2 There was some discussion abo

RE: SCM plugin for MKS SI in M2

2006-04-04 Thread Sharma, Jaikumar
I would be really helpful to lots of people, if somebody can take the initiative! -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 10:53 AM To: Maven Users List Subject: Re: SCM plugin for MKS SI in M2 There was some discussion about implementi

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread Martin Cooper
On 4/4/06, dan tran <[EMAIL PROTECTED]> wrote: > > pom Yep, that did the trick. Thanks! if you want to deploy your .swf file, use build-helper-maven-plugin to > attach > that artifact to the project to be deploy/install Hmm, I've been using deploy:deploy-file up 'til now, but I'm far from au f

Re: SCM plugin for MKS SI in M2

2006-04-04 Thread dan tran
There was some discussion about implementing MKS maven-scm-provider, but the implementation has never surfaced. -D On 4/4/06, Sharma, Jaikumar <[EMAIL PROTECTED]> wrote: > > Dear Maven users, > > Has anyone of you come across / or have info about MKS Source Integrity > plugin for M2 ? > http://w

SCM plugin for MKS SI in M2

2006-04-04 Thread Sharma, Jaikumar
Dear Maven users, Has anyone of you come across / or have info about MKS Source Integrity plugin for M2 ? http://www.mks.com Thanks for your help! - - - - - - - DISCLAIMER- - - - - - - - Unless indicated otherwise, the information contained in this message is privileged

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread dan tran
pom if you want to deploy your .swf file, use build-helper-maven-plugin to attach that artifact to the project to be deploy/install -D On 4/4/06, Martin Cooper <[EMAIL PROTECTED]> wrote: > > I have a project that generates a Flash SWF file as its artifact. At the > moment, I have the 'packaging

maven-idea-plugin fails (from trunk)

2006-04-04 Thread Arik Kfir
hey everyone Has anyone been able to build the 'maven-idea-plugin' from the trunk, using a trunk-built maven from the 2.0.x branch? The org.apache.maven.plugin.idea.IdeaModuleTest fails with a "Dependency is present" assertion error. What's more, if I ignore the test and install it anyway, I get

[M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread Martin Cooper
I have a project that generates a Flash SWF file as its artifact. At the moment, I have the 'packaging' value set to 'jar', for lack of a better value. The problem is that this causes an empty jar file to be created, alongside my SWF file. However, I don't see how I can avoid this, since the other

[M2] using tomcat-maven-plugin to stop a no existing war

2006-04-04 Thread Kevin Wang
Hi, all,    I am using tomcat-maven-plugin to stop a war which was deployed or not, If the war was not deployed, the mvn job will give BUILD ERROR and stop to build, Can you tell me how to ignore and continue building it?   Regards/Kevin. Qiang(Kevin) Wang Software Engin

Re: Need advice on version numbering convention

2006-04-04 Thread Eric Redmond
Well, sorry to dissapoint, but I'm not an expert... I am, however, full of opinions! This is how I tend to number, and it works well for me: Skip bugfix numbering unless you are working on a major project. Seriously. It gets very burdonsome to handle multiple minor edits on smaller projects, sinc

Re: jspc:compile

2006-04-04 Thread Eric Redmond
It looks like the ${basedir}/src/main/webapp directory must exist in your project path. Since you did not set the warSourceDirectory configuration, thats the default. So, you can either create that dir, or change the warSourceDirectory. Eric On 4/4/06, Venkatagopalaraju <[EMAIL PROTECTED]> wrot

Re: How to compile with external .JARS - How to skip compile from the maven site

2006-04-04 Thread Eric Redmond
For #2, you can just run the site:site goal directly, without running through the build lifecycle. On 4/4/06, Julio Oliveira <[EMAIL PROTECTED]> wrote: > > Hi > > > 1) . I need to compile a java project, that has a fileset like this in ant > > > > > > > > this work fine in ant, but i don't se

Re: Configuration files

2006-04-04 Thread Eric Redmond
When you say "distributed", do you mean deployed to a Maven repository? In that case, you have no choice but to package them inside of a jar (or zip, or whatever). If you mean distributed on its own, this sounds like a case of documenting to the user that they can put a file somewhere and make manu

Configuration files

2006-04-04 Thread Naz
How to add runtime configurations to my projects - eg I want to have a log4j config distributed with my package and want the contents of the log4j file modified to allow the users to change the log level. Filters are packaged within jar so they're no good. Basically I want to have config directo

Re: How to compile with external .JARS - How to skip compile from the maven site

2006-04-04 Thread Wayne Fay
For #1, yes you can use system scope etc like you've written. But ideally you would use mvn install:install-file and add the jar to your local repository instead. So using your example: mvn install:install-file -DartifactId=JXT_LATAM -Dfile=./libJXTI/jaxt-libs.jar -DgroupId=JXT -Dpackaging=jar -D

[ANN] Maven compiler plugin 2.0.1 released

2006-04-04 Thread Carlos Sanchez
The Maven team is pleased to annonunce the release of the Maven compiler plugin 2.0.1 You can run mvn -U to get the latest version. More info at http://maven.apache.org/plugins/maven-compiler-plugin/ Issues fixed http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&pid=11130&fixfor=1217

[ANN] Maven surefire plugin 2.1.3 and surefire 1.5.3 released

2006-04-04 Thread Carlos Sanchez
The Maven team is pleased to annonunce the release of the Maven surefire plugin 2.1.3 and underlying surefire library 1.5.3 You can run mvn -U to get the latest version of the plugin. More info at http://maven.apache.org/plugins/maven-surefire-plugin/ and http://maven.apache.org/surefire Issues f

artifact/add directories

2006-04-04 Thread Pierre Monestie
Hello, My final goal is to have the code in a jar file and the resources in a directory, unpacked I was wondering if the following was possible: -when you create an artifact, have the classes packaged in a jar file and the resources in a separate directory. -when you use assembly:assembly or asse

RE: Error w/ Cobertura

2006-04-04 Thread justin_fung
Don't forget that after you upgrade to Maven 2.0.3 to update your settings.xml file! -j --- Justin Fung [EMAIL PROTECTED] Sr. Analyst, Business Systems IT Banking Systems, e-Business HSBC Bank Canada http://www.hsbc.ca p: (604) 643-6605 f: (604) 64

RE: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread Allison, Bob
And yes it hangs in the 2.0.4 RC -Original Message- From: Allison, Bob [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 19:10 To: Maven Users List Subject: RE: [m2.0.3] Scanning for projects... hangs It doesn't require child projects. The following POM hangs in 2.0.3 (I haven't

RE: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread Allison, Bob
It doesn't require child projects. The following POM hangs in 2.0.3 (I haven't downloaded the 2.0.4 RC yet): 4.0.0 test test pom Test Hang 1.0-SNAPSHOT ${project.scm.connection}/xx ${project.scm.developerConnection}/xx ${project.scm.url}/xx Notice that project.scm.

Re: Shared projects and Maven best practice

2006-04-04 Thread Stephen Duncan
Yes, you can override both version and scope in the child POM. -Stephen On 4/4/06, Arnaud Bailly <[EMAIL PROTECTED]> wrote: > Didn't know about this tag. This allows to > specify default characteristics for a dependency that may be overriden > by a pom ? > > > -- > Arnaud Bailly, Dr. - Ingénieur

Re: Shared projects and Maven best practice

2006-04-04 Thread Wayne Fay
I've never tried overriding the version number in a child pom but I'd guess it works. Give it a try and find out! Basically dependencyManagement lets you specify... parent-pom.xml junit junit 3.8.1 log4j log4j 1.2.13 child-pom.xml (note, n

Re: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread Brett Porter
what about the hang? On 4/5/06, Jens Zastrow <[EMAIL PROTECTED]> wrote: > Neither with the 2.0.4-SNAPSHOT. > > To test this just add teh following to a child-pom. > > > ${project.scm.connection}/xxx > > ${project.scm.developerConnection}/xxx nnection> > ${project.scm.url}/xxx > >

How to compile with external .JARS - How to skip compile from the maven site

2006-04-04 Thread Julio Oliveira
Hi 1) . I need to compile a java project, that has a fileset like this in ant this work fine in ant, but i don't see who to do the declarative for maven2 ? can i do a lib declarative. I have a lot of .jar to install it at the repository . something like this ?? JXT

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
I've continued struggling with this, not sure whether this represents progress or not, but am now getting this exception when i run mvn install: [INFO] [ERROR] BUILD ERROR [INFO] -

Re: Shared projects and Maven best practice

2006-04-04 Thread Mang Jun Lau
Yes I believe so. _Mang Lau Arnaud Bailly <[EMAIL PROTECTED]> 04/04/2006 04:37 PM Please respond to "Maven Users List" To "Maven Users List" cc Subject Re: Shared projects and Maven best practice Didn't know about this tag. This allows to specify default characteristics for a de

Re: configure ArrayList in POM

2006-04-04 Thread dan tran
The example Mike showed is a "Map" injection. /** @parameter */ private Map links = HashMap(); Note that you need instantiate a HashMap() otherwise it will throw a NPE ( is it a bug? since you dont have to do the equivalent of List type) Check out surefire=plugin source for example. -Dan On

Re: Shared projects and Maven best practice

2006-04-04 Thread Arnaud Bailly
Didn't know about this tag. This allows to specify default characteristics for a dependency that may be overriden by a pom ? -- Arnaud Bailly, Dr. - Ingénieur de Recherche NORSYS 1, rue de la Cense des Raines ZAC du Moulin 59710 ENNEVELIN Tel : (33) 3 28 76 56 76 Mob : (33) 6 17 12 19 78 Fax

Re: surefire-report plugin now hosted under maven.apache.org ???

2006-04-04 Thread Arnaud Bailly
"Yann Le Du" <[EMAIL PROTECTED]> writes: > AFAIK, the source of surefire report was "merely" moved to Apache, as have > been other ones' (jxr, changes, changelog). So Apache source is the latest > version, but no release has been done yet. For the moment, we must stick to > groupId org.codehaus.mo

RE: Error w/ Cobertura

2006-04-04 Thread Daun DeFrance
Lee, Recent Cobertura plugin requires Maven 2.0.3 to run. Go to http://maven.apache.org and update your version of maven before trying to run the plugin again. I would also update your Cobertura plugin because I believe my version requires 2.0.3, not the snapshot version. Best, D DeFrance

RE: Continued Cobertura Plugin Issues

2006-04-04 Thread Daun DeFrance
Lee, I was able to move past this issue by removing the version tag from my Cobertura plugin specifications (below) and performing a -U when executing "mvn clean site". I have since found a conflict between the Cobertura and AspectJ plugins where, because of a bug with AspectJ, the plugin co

RE: configure ArrayList in POM

2006-04-04 Thread Mike Perham
This would work as well but doesn't make a lot of sense. My suggestion was just for readablity. http://... http://... Basically Maven ignores the names of child elements of List/Array types AFAIK. -Original Message- From: gdub [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2

Re: surefire-report plugin now hosted under maven.apache.org ???

2006-04-04 Thread Yann Le Du
AFAIK, the source of surefire report was "merely" moved to Apache, as have been other ones' (jxr, changes, changelog). So Apache source is the latest version, but no release has been done yet. For the moment, we must stick to groupId org.codehaus.mojo - or else use trunk builds . When releases are

Re: Shared projects and Maven best practice

2006-04-04 Thread Mang Jun Lau
yea you're right. I totally forgot about . Thanks :) _Mang Lau "Wayne Fay" <[EMAIL PROTECTED]> 04/04/2006 12:41 PM Please respond to "Maven Users List" To "Maven Users List" cc Subject Re: Shared projects and Maven best practice > release a version of the Utility project. As

RE: Shared projects and Maven best practice

2006-04-04 Thread Mang Jun Lau
Yes this seems feasible. The only thing is that changing the utility project requires a new deploy but it doesn't change that often anyways. Thanks for your input Daniel, I might end up implementing your suggestion depending on the consensus from others. _Mang Lau "Siegmann Daniel, NY" <

Re: configure ArrayList in POM

2006-04-04 Thread gdub
Mike Perham wrote: > > http://... > http://... > Thanks, Mike. Is configuration syntax like that specifically written into each each plug-in? Or does Maven somehow automatically discern that "link" is the element that holds list items for a property named "links?" I'm just wondering how

Re: Continued Cobertura Plugin Issues

2006-04-04 Thread Lee Meador
Did you get this worked out? On 3/28/06, Daun DeFrance <[EMAIL PROTECTED]> wrote: > > FWIW, > Removing the cobertura:clean execution below from my pom means I get > results every time I run site now, but they are cumulative. So if a > line gets called twice during a test, every time I run "site",

RE: Regarding continuum setup

2006-04-04 Thread Vijay Shanker
Hi Lee, Thanks for the suggestion. I will do as you suggested. Vijay From: [EMAIL PROTECTED] on behalf of Lee Meador Sent: Tue 4/4/2006 1:36 PM To: Maven Users List Subject: Re: Regarding continuum setup It is best to send these questions to the continuum

Re: Regarding continuum setup

2006-04-04 Thread Lee Meador
It is best to send these questions to the continuum group: [EMAIL PROTECTED] * I assume you mean you are unable to add maven projects using the information on the given link. I don't know the answer but I do know you need to tell what you tried and which version of maven you are using and maybe a

continuum setup with maven for nightly build

2006-04-04 Thread Vijay Shanker
Can any body suggest me setup procedure for continuum for nightly build? I am unable to add maven projects into continuum through below given link: http://maven.apache.org/continuum/guides/getting-started/index.html Thanking you in advance. Vijay --

Regarding continuum setup

2006-04-04 Thread Vijay Shanker
Can any body suggest me setup procedure for continuum for nightly build? I am unable to add maven projects into continuum through below given link: http://maven.apache.org/continuum/guides/getting-started/index.html Thanking you in advance. Vijay From: gd

Re: surefire-report plugin now hosted under maven.apache.org ???

2006-04-04 Thread Arnaud Bailly
Hi Jens, In my experience, the apache version seems to be the latest and most stable version of surefire plugin. I had problems with codehaus that disappeared with apache. regards, -- Arnaud Bailly, Dr. - Ingénieur de Recherche NORSYS 1, rue de la Cense des Raines ZAC du Moulin 59710 ENNEVELIN

Re: Shared projects and Maven best practice

2006-04-04 Thread Arnaud Bailly
I may be misunderstanding something, as I have still some problems understanding artifact resolution in m2, but I thing the LATEST keyword is useful in such a situation. AFAIK, the maven-metadata in the repos contains pointers for latest (and release ?). This seems to work for a whole artifact, wha

RE: configure ArrayList in POM

2006-04-04 Thread Mike Perham
private List links; http://... http://... -Original Message- From: gdub [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 12:57 PM To: Maven Users List Subject: configure ArrayList in POM When a plugin lists a configuration property of type ArrayList, how are values express

configure ArrayList in POM

2006-04-04 Thread gdub
When a plugin lists a configuration property of type ArrayList, how are values expressed in a POM? In particular, I want to use the links configuration of the javadoc plugin but when I do the simple thing--just put a URL in the configuration/links element-- Maven complains that I'm trying to assi

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
Have sent the files by email. The dependency (and others) are in the local repository, so for some reason it cannot find them. :| Being new to this technology I am a little overwhelmed, and so I thank you all for your help. -- View this message in context: http://www.nabble.com/Maven-Webstart-Pl

Re: [surefire] xml report not well formed contains

2006-04-04 Thread Carlos Sanchez
There's a test case https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-surefire-plugin/src/it/test3 and it's working correctly On 4/4/06, Jens Zastrow <[EMAIL PROTECTED]> wrote: > the message attribute of the element contains < - the text > inside is escaped correctly. > > [pom.xml] > or

RE: TimeZone Element in pom.xml

2006-04-04 Thread ian . d . stewart
public static TimeZone getTimeZone(String ID) Gets the TimeZone for the given ID. Parameters: ID - the ID for a TimeZone, either an abbreviation such as "PST", a full name such as "America/Los_Angeles", or a custom ID such as "GMT-8:00". Note that the

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
I am using maven-2.0.2 The dependencies are correctly in the repository. I have created the log and can send you my pom.xml ... what is your email address? Reply to [EMAIL PROTECTED] so I have your email address. Thanks, Jeff -- View this message in context: http://www.nabble.com/Maven-Webstar

Re: [surefire] xml report not well formed contains

2006-04-04 Thread Wayne Fay
This seems like a bug report, not a users@ email... Why not go post this in JIRA under the surefire component? Wayne On 4/4/06, Jens Zastrow <[EMAIL PROTECTED]> wrote: > the message attribute of the element contains < - the text > inside is escaped correctly. > > [pom.xml] > org.apache.maven.

Re: Maven Webstart Plugin

2006-04-04 Thread jerome lacoste
>>> Caused by: java.lang.IllegalStateException: artifact >>> org.mercyships:partnership:jar:0.0.1 has no matc >>> hing file, why? Check the logs... >> >> Is this artifact installed in your local repository? On 4/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > This is the artifact it is gene

Re: Shared projects and Maven best practice

2006-04-04 Thread Wayne Fay
> release a version of the Utility project. As a result of this release, we > would have to manually update all the POMs dependent on the Utility > project with the specific version number being released. Then, we would > have to manually update all the POMs from the other application that needs

Need advice on version numbering convention

2006-04-04 Thread Man-Chi Leung
hi, sorry that it is not a direct question on Maven usage, but I really hope to improve my Release management process with Maven. I would like to understand more regarding version numbering convention, perhaps, the most commonly practice in Java community. 1) for subversion source tree.

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
This is the artifact it is generating, and it is also in the local repository. -- View this message in context: http://www.nabble.com/Maven-Webstart-Plugin-t1371503.html#a3747796 Sent from the Maven - Users forum at Nabble.com. ---

RE: TimeZone Element in pom.xml

2006-04-04 Thread Jörg Schaible
Hi Andreas and Ian, Again, why would anyone use a structure of three elements that is also never correct if the daylight saving is changed in a country like it has been done currently for Australia? The zone ID is all you need, see javadocs to TimeZone! - Jörg Andreas Guther wrote on Tuesday,

RE: Shared projects and Maven best practice

2006-04-04 Thread Siegmann Daniel, NY
> Do I make sense or am I missing something? > > Thanks again for your reply. > > > _Mang Lau This is only true if you have to change the snapshot version. I don't know much about snapshots, particularly in Maven2, but I would assume you could just have a snapshot version "1-SNAPSHOT" and then

Re: Maven Webstart Plugin

2006-04-04 Thread jerome lacoste
On 4/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > If I run mvn install and use the pom to create the webstart artifacts it gets > a little further than running mvn webstart:jnlp. It created a directory in > target called jnlp and places the jar of my application in there, however > fails

Re: Error w/ Cobertura

2006-04-04 Thread Lee Meador
I did that but somehow I missed changing my M2_HOME environment variable and although the path was pointing to 2.0.3 it wasn't really running. The command "mvn --version" should show 2.0.3 and it didn't. Thanks. -- Lee Meador On 4/4/06, Patrick Kimber <[EMAIL PROTECTED]> wrote: > > Try download

RE: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread Jens Zastrow
Neither with the 2.0.4-SNAPSHOT. To test this just add teh following to a child-pom. ${project.scm.connection}/xxx ${project.scm.developerConnection}/xxx ${project.scm.url}/xxx -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 200

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
If I run mvn install and use the pom to create the webstart artifacts it gets a little further than running mvn webstart:jnlp. It created a directory in target called jnlp and places the jar of my application in there, however fails with this exception: [INFO] ---

Re: Error w/ Cobertura

2006-04-04 Thread Patrick Kimber
Try downloading Maven 2.0.3 from: http://maven.apache.org/download.html On 04/04/06, Lee Meador <[EMAIL PROTECTED]> wrote: > I get this error when trying to run the Cobertura report: > > [INFO] Error resolving version for 'org.codehaus.mojo:cobertura-maven-plugin': > Plugin requires Maven version

RE: Shared projects and Maven best practice

2006-04-04 Thread Mang Jun Lau
Thanks for the reply. I actually thought of this idea too so I had a hard time coming up with why it doesn't work or why it's hard. I think we depend on CVS naturally because we use RAD as our environment and it's just easier to do so. Anyways, the solution that you have come up with is hard b

RE: TimeZone Element in pom.xml

2006-04-04 Thread Andreas Guther
Ian, I believe changing the timezone element to a complex element in the way you suggest is an excellent idea. I have filed an enhancement request quoting your email: http://jira.codehaus.org/browse/MNG-2202 Andreas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Error w/ Cobertura

2006-04-04 Thread Lee Meador
I get this error when trying to run the Cobertura report: [INFO] Error resolving version for 'org.codehaus.mojo:cobertura-maven-plugin': Plugin requires Maven version 2.0.3-SNAPSHOT Does anyone have a translation? -- Lee Meador Sent from gmail. My real email address is [EMAIL PROTECTED]

using JTestCase in Maven2

2006-04-04 Thread Pierre Jacquot
Hi, i'm already use the java framework Junit, i've integrate my test with the plugin Surefire. But Junit isn't complete like i want, so i want to use the framework JTestCase. The problem is that i don't know if a plugin already exist or if i can use SureFire to use JTestCase. Thanks for you help.

[surefire] xml report not well formed contains

2006-04-04 Thread Jens Zastrow
the message attribute of the element contains < - the text inside is escaped correctly. [pom.xml] org.apache.maven.plugins maven-surefire-plugin 2.1.3 [report.xml] junit.framework.AssertionFailedError: expected:<1> b ut was:<2> at junit.framework.Assert.fail(Assert.java:47)

Re: Maven Webstart Plugin

2006-04-04 Thread Tim Kettler
Hi, Looking at the snippet below it seems you have defined a repository with the id 'central' which overrides the default central repository. Changing the id of your definition to something else should do the trick. -Tim [EMAIL PROTECTED] schrieb: [...] from the specified remote repositor

RE: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread Vijay Shanker
Hi John, Just curious to know whether you worked with Protective Life Insurance company. Thanks, Vijay From: John Casey [mailto:[EMAIL PROTECTED] Sent: Tue 4/4/2006 9:26 AM To: Maven Users List Subject: Re: [m2.0.3] Scanning for projects... hangs Would yo

jspc:compile

2006-04-04 Thread Venkatagopalaraju
Dear Maven Users, I am using jspc-maven-plugin for jsp precompilation. When I try to compile jsp's, I am getting BUILD ERROR(Embedded error: The -uriroot option must specify a pre-existing directory).My pom.xml is http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001

RE: maven-ear-plugin - cannot find SNAPSHOT

2006-04-04 Thread Veerman, Christiaan
Resolved: I had the artifact 'version' info in the webModule. Although I would still like to find out where the 2.2-SNAPSHOT resides. Cheers, C:\ -Original Message- From: Veerman, Christiaan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 10:29 AM To: Maven Users List Subject:

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
Well, that exception is cleared up now. Not sure why. The only problem is that it is looking for an ant jar, I already have version 1.5 in my repository. Seems to be a transitive dependency somewhere that is broken. Any ideas? [INFO] ---

RE: Shared projects and Maven best practice

2006-04-04 Thread Siegmann Daniel, NY
I'm afraid I can't help with your problem exactly, but since you wanted to spark a discussion... > So really I guess that if there's a way to checkout an older > version of > the Utility project but HEAD of everything else, then I'm > fine. Is there > a way to do this? Or am I using Maven inc

Re: [m2.0.3] Scanning for projects... hangs

2006-04-04 Thread John Casey
Would you mind trying the latest 2.0.4 RC, to see whether this is still happening? If we can isolate the circumstances in which this occurs, we might be able to get it fixed for the release...so any more detail you could provide would be much appreciated. http://maven.zones.apache.org/~maven/b

Re: 1.0.3 release date

2006-04-04 Thread Emmanuel Venisse
In few days, I don't know exactly when. Emmanuel Xavier Frisaye a écrit : Hi everybody, I saw at jira that the 1.0.3 version is about to be released but when is it planned for? Thanks in advance for replying. Regards, Xavier Frisaye

maven-ear-plugin - cannot find SNAPSHOT

2006-04-04 Thread Veerman, Christiaan
Hello: I am having problems with the maven-ear-plugin as the only version I can find is 2.1. I assume the problem is that I'm not using the 2.2-SNAPSHOT as documented @ http://maven.apache.org/plugins/maven-ear-plugin/howto.html. I have tried http://snapshots.maven.codehaus.org/maven2 and http:/

1.0.3 release date

2006-04-04 Thread Xavier Frisaye
Hi everybody, I saw at jira that the 1.0.3 version is about to be released but when is it planned for? Thanks in advance for replying. Regards, Xavier Frisaye

Shared projects and Maven best practice

2006-04-04 Thread Mang Jun Lau
Hi everyone, I just want to spark a discussion here on the list. I want to know if you guys/girls have encountered a simliar problem to what I'm having now. So here goes: At our company we have two J2EE applications that are fairly large with many projects. We operate in a RAD/Eclipse envir

Re: TimeZone Element in pom.xml

2006-04-04 Thread ian . d . stewart
Note that the observation of Summertime/Daylight Savings Time does not change the timezone where a developer resides. Instead of changing everybody's timezone twice a year, I would recommend making the timezone element its own complex type, more inline with the java.util.TimeZone class: Ea

Re: maven runtime

2006-04-04 Thread Jesse McConnell
I am planning on picking up the runtime plugin again and revamping it pretty soon, just need to take some time to do it... so no, the runtime plugin in mojo sandbox probably shouldn't be use, the model will likely be changing when I pick it back up. jesse On 4/3/06, Stephen Duncan <[EMAIL PROTEC

Re: problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Pierre, > sorry i can't use snapshot version, marven send me this error messaga when i > use the site command. > error : > Reason: Unable to download the artifact from any repository > > org.codehaus.mojo:surefire-report-maven-plugin:pom:2.0-be

Re: problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Pierre Jacquot
sorry i can't use snapshot version, marven send me this error messaga when i use the site command. error : Reason: Unable to download the artifact from any repository org.codehaus.mojo:surefire-report-maven-plugin:pom:2.0-beta-2-SNAPSHOT :'( i'm looking for an other beta version ^^ 2006/4/4,

Re: POM : Not a v4.0.0 POM / Error building POM (may not be this proj ect's POM)

2006-04-04 Thread Mang Jun Lau
hehe...first name is Mang Jun, last name is Lau. I just go by Mang...it's shorter and easier :) It's confusing because Chinese names tend to have two or three characters -- one for last name and the other two for first name. _Mang Lau "Alexandre Poitras" <[EMAIL PROTECTED]> 04/03/2006 0

surefire-report plugin now hosted under maven.apache.org ???

2006-04-04 Thread Jens Zastrow
What/Where is the actual version of this plugin? org.codehaus.mojo surefire-report-maven-plugin vs. org.apache.maven.plugins maven-surefire-report-plugin http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-surefire-repor t-plugin/pom.xml ---

Re: problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Pierre, > thanks Thorsten. > I have done what you said before, the good news that you have resolve > my problem the bad news that a new problem come... ^^ :-) > > > > > org.codehaus.mojo > surefire-report-maven-plugin > > 2

Re: problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Pierre Jacquot
thanks Thorsten. I have done what you said before, the good news that you have resolve my problem the bad news that a new problem come... ^^ error : [WARNING] Error loading report org.codehaus.mojo.surefire.SurefireReportMojo - AbstractMethodError: canGenerateReport() [INFO] Generate "Maven Sure

Re: problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Pierre, > i've got some problemem when i want to make site. Maven send this > error when it uses the surefire-report plugin : > > error message : > [WARNING] Error loading report > org.codehaus.mojo.surefire.SurefireReportMojo - AbstractMethodErr

problem with surefire-report-maven-plugin-2.0beta1

2006-04-04 Thread Pierre Jacquot
i've got some problemem when i want to make site. Maven send this error when it uses the surefire-report plugin : error message : [WARNING] Error loading report org.codehaus.mojo.surefire.SurefireReportMojo - AbstractMethodError: canGenerateReport() [INFO] Generate "Maven Surefire Report" report.

Re: Maven Webstart Plugin

2006-04-04 Thread [EMAIL PROTECTED]
Here is the full stack trace: [INFO] [INFO] Trace org.apache.maven.lifecycle.LifecycleExecutionException: Failure to run the plugin: at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLife

[m203] Cobertura and classes compiled with debug info

2006-04-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Maveners, I'm using the Cobertura plugin for generate some (hopefully useful :-)) reports: org.apache.maven.plugins maven-compiler-plugin 1.4 1.4 1.4 true ... o

How do I filter site.xml and APT docs?

2006-04-04 Thread Jens Riboe
I would like to put POM variables in the site docs, like site.xml and the APT files. How can I do that? I tried it, but it doesn't work out-of-the-box. Thanks in advance, /Jens - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Project Documents - Where To Place?

2006-04-04 Thread Arnaud Bailly
Thanks for the info. My reply was then incorrect as Nicolas De Loof pointed out. -- Arnaud Bailly, Dr. - Ingénieur de Recherche NORSYS 1, rue de la Cense des Raines ZAC du Moulin 59710 ENNEVELIN Tel : (33) 3 28 76 56 76 Mob : (33) 6 17 12 19 78 Fax : (33) 3 28 76 57 00 Web : http://www.norsys.f

[ANN] JAVAWUG BOF XVII / Thursday 20th April 2006 @ 19:00 / Oracl e City of London

2006-04-04 Thread Pilgrim, Peter
Dear All I would like to formally announce that JAVAWUG (Java Web User Group) is holding the seventeenth Birds-of-Feather (Meet up XVII) at the Oracle City of London offices on Thursday, 20th April 2006. The meeting will take place in a room with Audio/Visual facilities between 7-9:30 pm. Ther

  1   2   >