Re: How to read POM dependencies from file using Maven Resolver

2018-07-22 Thread Vincent Massol
dingResult modelBuildingResult = modelBuilder.build(modelBuildingRequest); Model model = modelBuildingResult.getEffectiveModel(); … } Is that the only way? Thanks -Vincent > On 20 Jul 2018, at 16:56, Vincent Massol wrote: > > Hi guys, > > I’ve been trying to find how to

How to read POM dependencies from file using Maven Resolver

2018-07-20 Thread Vincent Massol
Hi guys, I’ve been trying to find how to programmatically resolve dependencies from a pom.xml file by using the Maven Resolver API (https://github.com/apache/maven-resolver). So far I’ve succeeded in resolving dependencies from an Artifact but I haven’t found how to do by reading from a

Re: Release process

2008-03-04 Thread Vincent Massol
On Mar 4, 2008, at 6:13 AM, Wendy Smoak wrote: On Mon, Mar 3, 2008 at 7:29 PM, Arash Bizhan zadeh [EMAIL PROTECTED] wrote: There is 6 Tomcat 5.5 sandboxes, all of them running on RHE 6. There is a load balancer in front of them and we need to release every app on all of them. I am

Re: How do people handle installers/exe/bat/sh in maven?

2007-10-02 Thread Vincent Massol
Hi, I use 2 installers: * IzPack to generate a generic JAR installer * launch4j to wrap the generic JAR installer into an EXE for windows platforms I got the IzPack maven plugin from http://jira.codehaus.org/browse/ MOJO-277 which I installed in my custom remo repo. For launch4j I simply

Re: How do people handle installers/exe/bat/sh in maven?

2007-10-02 Thread Vincent Massol
On Oct 2, 2007, at 4:10 PM, Wim Deblauwe wrote: For launch4j I simply used its Ant task that I called using the AntRun plugin. Good idea, I current use the maven plugin ( http://9stmaryrd.com/tools/launch4j-maven-plugin), but it is not maintained anymore it seems. Right. I looked at

Re: [ANN] Maven Clover 2 Plugin 3.0-beta-4 Released

2007-09-24 Thread Vincent Massol
Hi Tom, Congrats for this first release under the Atlassian umbrella! Where can we see what's different from the last version of the Clover plugin located at Apache? I tried checking http://developer.atlassian.com/jira/browse/CLMVN?

Re: What is the Best practice for generating variations of an artifacts?

2007-05-05 Thread Vincent Massol
Good summary of the different options Franz! For the moment I'm happy with the solution I have found but I may revisit it in the future, who knows. For those interested here's a working example: svn checkout svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk/web Check the

[ANN] Clover plugin v2.4 released

2007-04-23 Thread Vincent Massol
The Maven team is pleased to announce the release of the Maven Clover plugin, version 2.4. You can run mvn -up to get the latest version of the plugin, or specify the version in your project's plugin configuration: plugin groupIdorg.apache.maven.plugins/groupId

Re: What is the Best practice for generating variations of an artifacts?

2007-04-22 Thread Vincent Massol
Hi Franz, On Apr 20, 2007, at 4:50 AM, franz see wrote: Good day, If the only thing different with the variations are the config files and some dependencies, then I suggest you use #2. Thanks for your help. How is #2 better than the solution I'm now using (which used the assembly

Re: What is the Best practice for generating variations of an artifacts?

2007-04-19 Thread Vincent Massol
Hi John and everyone, Sorry for answering you so late on this and thanks again for your feedback. Following your direction I think I've found something slightly better: * I use a pom packaging * I use the assembly plugin to directly generate a WAR using the following assembly descriptor:

Re: How can i run clover and cobertura permanantly?

2007-03-25 Thread Vincent Massol
Hi, On Mar 25, 2007, at 11:47 PM, Baz wrote: Hi, How can I run test code coverage tools as part of my build? What changes do i need to make in the pom.xml? I ran mvn cobertura:cobertura and seems like it is generating the reports. Please advise. You can check the plugin documentation

What is the Best practice for generating variations of an artifacts?

2007-03-16 Thread Vincent Massol
Hi, I've never found a good answer to this use case so far so I'm curious about how others have implemented it. Imagine a project that generates a WAR. This WAR contains a config file (say in WEB-INF/classes) that configures connection parameters for the database. Now imagine that your

Re: What is the Best practice for generating variations of an artifacts?

2007-03-16 Thread Vincent Massol
just picks the one he wants and it works out of the box Thanks for your inputs! -Vincent -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 6:39 AM To: Maven Users List Subject: What is the Best practice for generating variations

Re: What is the Best practice for generating variations of an artifacts?

2007-03-16 Thread Vincent Massol
On Mar 16, 2007, at 1:20 PM, Kenney Westerhof wrote: Hi, Vincent Massol wrote: Hi, I've never found a good answer to this use case so far so I'm curious about how others have implemented it. Imagine a project that generates a WAR. This WAR contains a config file (say in WEB-INF/classes

Re: Code coverage with AspectJ?

2007-03-10 Thread Vincent Massol
On Mar 9, 2007, at 11:58 PM, Kaare Nilsen wrote: On 09/03/07, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 2:16 PM, Steve Shucker wrote: I don't think AspectJ and Clover are compatible. Hmmm they might be if you run them in the right order. Run Clover first on sources

Re: Code coverage with AspectJ?

2007-03-10 Thread Vincent Massol
, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 11:58 PM, Kaare Nilsen wrote: On 09/03/07, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 2:16 PM, Steve Shucker wrote: I don't think AspectJ and Clover are compatible. Hmmm they might be if you run them in the right

Re: Code coverage with AspectJ?

2007-03-09 Thread Vincent Massol
weaving during unit-tests to do this. To use load-time weaving you must fork at least once and provide the javaagent as an argline -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 8:42 AM To: 'Maven Users List' Subject: RE: Code

Re: Cargo maven 2 plugin : timeout when deploying to JBoss 4x

2007-03-03 Thread Vincent Massol
Hi Guillaume, On Feb 22, 2007, at 4:29 PM, Guillaume Duchesneau wrote: Hi, We are in the process of creating an integration test suite for a J2EE project using the Cargo Maven 2 plugin with a JBoss 4.0 container. When we execute mvn integration-test, the jboss zip is correctly expanded

Re: Cargo undeploy error

2007-02-06 Thread Vincent Massol
Hi Jelle, Could you use the 0.3-SNAPSHOT version (we've fixed that in there). See http://cargo.codehaus.org/Maven2+Plugin+Installation Thanks -Vincent PS: Next time, please use the cargo mailing lists. On Feb 6, 2007, at 9:13 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm

Re: Maven 2.0 Plugin for ZIP Archive

2007-01-28 Thread Vincent Massol
On Jan 28, 2007, at 9:08 AM, LAMY Olivier wrote: http://jira.codehaus.org/browse/MNG-1683 Yep this is the 9th most popular issue (http://jira.codehaus.org/ browse/MNG? report=com.atlassian.jira.plugin.system.project:popularissues-panel). And BTW IMO the assembly plugin for this is a

Re: maven 2, clover and contexts

2007-01-20 Thread Vincent Massol
); was executed Thanks for your help Vincent Massol a écrit : Hi David, Why are you assuming that statementContext would work? Just check the plugin documentation and you'll see that the correct tag name is contextFilters. Just check the documentation for more details and examples. Thanks

Re: maven 2, clover and contexts

2007-01-20 Thread Vincent Massol
to spend some time on the plugin end of next week. I'd like to exclude all my loggers... BTW, I'll try to understand how that works and see if i can contribute Cool! Thanks -Vincent David DIDIER Vincent Massol a écrit : Hi David, I think the reason is because the contextFilter

Re: maven 2, clover and contexts

2007-01-18 Thread Vincent Massol
Hi David, Why are you assuming that statementContext would work? Just check the plugin documentation and you'll see that the correct tag name is contextFilters. Just check the documentation for more details and examples. Thanks -Vincent On Jan 17, 2007, at 11:46 PM, c_inconnu2 wrote:

RE: Quality Dashboard

2006-12-03 Thread Vincent Massol
Well... :-) I have been wanting to write this dashboard stuff for a long time now but I've never found the time to do it... I've now joined the XWiki project and I think it would make a nice foundation for a quality/health dashboard. OTOH I still don't know when I'll have time to work on it. Don't

RE: maven-clover-plugin exclude not working

2006-11-14 Thread Vincent Massol
Jeff, I'll try to have a look at it today (no guarantees though). What you could investigate is to read the code and fix what's wrong! :-) I gave it a cursory look and couldn't find anything especially as several users are using the exclude mechanism and it seems to work fine for them (except

RE: Source code examples for Better Builds with Maven?

2006-11-11 Thread Vincent Massol
Hi Ed, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ed Young Sent: samedi 11 novembre 2006 20:38 To: users@maven.apache.org Subject: Source code examples for Better Builds with Maven? I went to the mergere site and the source code examples for

RE: [OT] cargo / codehaus mailing lists

2006-11-08 Thread Vincent Massol
Hi Nathan, I'm not sure if there's any other way than using xircles now... :-( I've reported the error (http://jira.codehaus.org/browse/HAUS-1373) and it's already been fixed by speedy Ben! :-) Try it now it should work. Thanks -Vincent -Original Message- From: Nathan Coast

RE: We need some explanation ...

2006-11-07 Thread Vincent Massol
-Original Message- From: Arnaud Bailly [mailto:[EMAIL PROTECTED] Sent: mardi 7 novembre 2006 09:04 To: Maven Users List Subject: Re: We need some explanation ... Hi Vincent, The architecture is quite clear now, but there remains some questions: - I understand that when calling

RE: We need some explanation ...

2006-11-07 Thread Vincent Massol
-Original Message- From: Arnaud Bailly [mailto:[EMAIL PROTECTED] Sent: mardi 7 novembre 2006 11:03 To: Maven Users List Subject: Re: We need some explanation ... Thanks for the (quick :-)) answer. I agree that generated sources are usually tested and do not need specific

RE: Poor man's web.xml merging

2006-11-07 Thread Vincent Massol
Hi Arnaud, I haven't worked on that code so I don't know what's wrong. I do know that people are able to use it though so it's possible you could get it to work and the error may be a configuration error. I think the best would be for you to post anything related to Cargo on the Cargo user list

RE: We need some explanation ...

2006-11-06 Thread Vincent Massol
Hi Arnaud, The clover plugin is presumably one of the most complex m2 plugin. I had some architecture diagrams to explain how it worked but I've hidden them as the code has changed a bit and I hadn't had the time to update the diagrams. I'll try to find some time today to update them and

RE: We need some explanation ...

2006-11-06 Thread Vincent Massol
Hi Arnaud, I've added the architecture diagrams. See http://maven.apache.org/plugins/maven-clover-plugin/architecture/architectur e.html I don't know why but some images are not displayed correctly. Here are 2 diagrams explaining 2 use cases: - clover:check -

RE: Poor man's web.xml merging

2006-11-06 Thread Vincent Massol
Hi Arnaud, There's also some code to merge Wars in Cargo's code. See http://cargo.codehaus.org/Merging+WAR+files I haven't used it myself so I don't know how well it works but it may be worth a try. Thanks -Vincent -Original Message- From: Arnaud Bailly [mailto:[EMAIL PROTECTED]

RE: Maven rant

2006-11-02 Thread Vincent Massol
that: http://drupal.org/handbooks 2006/10/31, Vincent Massol [EMAIL PROTECTED]: -Original Message- From: Sebastien Arbogast [mailto:[EMAIL PROTECTED] Sent: mardi 31 octobre 2006 14:18 To: Maven Users List Subject: Re: Maven rant I totally agree but I think

RE: Overview - Ant to Maven

2006-11-01 Thread Vincent Massol
-Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: jeudi 2 novembre 2006 06:46 To: Maven Users List Subject: Re: Overview - Ant to Maven Kevin, I'm not sure there's another way to do a remote deploy. At least, this is how every command-line based deploy tool I've

RE: EJB Building

2006-11-01 Thread Vincent Massol
Hi EJ, -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: mercredi 1 novembre 2006 20:56 To: Maven Users List Subject: RE: EJB Building I did - their example mentions building a j2ee project with a single ejb, there's no mention of best practices in regards to

RE: Maven rant

2006-10-31 Thread Vincent Massol
-Original Message- From: Sebastien Arbogast [mailto:[EMAIL PROTECTED] Sent: mardi 31 octobre 2006 14:18 To: Maven Users List Subject: Re: Maven rant I totally agree but I think that the problem is very difficult to solve, especially with all the incredible amount of

RE: project.build.finalName incorrect in Clover forked lifecycle

2006-10-27 Thread Vincent Massol
Hi Chris, This looks like a bug in the Clover plugin. Could you please create a jira issue and I'll look into it? Thanks -Vincent -Original Message- From: Chris Tucker [mailto:[EMAIL PROTECTED] Sent: mardi 24 octobre 2006 00:57 To: users@maven.apache.org Subject:

RE: [M2] maven-cargo-plugin, no longer supported?

2006-10-24 Thread Vincent Massol
-Original Message- From: CodingPlayer [mailto:[EMAIL PROTECTED] Sent: mardi 24 octobre 2006 11:44 To: users@maven.apache.org Subject: [M2] maven-cargo-plugin, no longer supported? Hi, I lately started with my first webapp using Maven2. And i heard that the

RE: Maven 1.1 RC1 SNAPSHOT needs testers

2006-10-16 Thread Vincent Massol
Hi Arnaud, -Original Message- From: Arnaud HERITIER [mailto:[EMAIL PROTECTED] Sent: lundi 16 octobre 2006 09:34 To: users@maven.apache.org Subject: Re: Maven 1.1 RC1 SNAPSHOT needs testers I hate these errors ! ;-) We'll add a note to ask to the users to manually remove the

RE: Maven 1.1 RC1 SNAPSHOT needs testers

2006-10-16 Thread Vincent Massol
-Original Message- From: Tomasz Pik [mailto:[EMAIL PROTECTED] Sent: lundi 16 octobre 2006 15:17 To: Maven Users List Subject: Re: Maven 1.1 RC1 SNAPSHOT needs testers On 10/16/06, Vincent Massol [EMAIL PROTECTED] wrote: Another option is to clean the cache by default upon

RE: mvn -N install not working for daytrader

2006-10-13 Thread Vincent Massol
Hi Satish, -Original Message- From: Satish Gupta [mailto:[EMAIL PROTECTED] Sent: vendredi 13 octobre 2006 07:12 To: Maven Users List Subject: Re: mvn -N install not working for daytrader Thanks for your reply! Daytrader is the example being dealt with in the book Better Builds

RE: Clover Plugin doesn't generate XML report

2006-10-11 Thread Vincent Massol
Hi, -Original Message- From: Gisbert Amm [mailto:[EMAIL PROTECTED] Sent: mercredi 11 octobre 2006 12:18 To: Maven Users List Subject: Clover Plugin doesn't generate XML report I've set configuration generateXmltrue/generateXml /configuration as described on

RE: Clover Plugin doesn't generate XML report

2006-10-11 Thread Vincent Massol
-Original Message- From: Gisbert Amm [mailto:[EMAIL PROTECTED] Sent: mercredi 11 octobre 2006 15:04 To: Maven Users List Subject: Re: Clover Plugin doesn't generate XML report Vincent Massol wrote: I've set configuration generateXmltrue/generateXml /configuration

RE: Clover Plugin doesn't generate XML report

2006-10-11 Thread Vincent Massol
-Original Message- From: Gisbert Amm [mailto:[EMAIL PROTECTED] Sent: mercredi 11 octobre 2006 16:47 To: Maven Users List Subject: Re: Clover Plugin doesn't generate XML report Vincent Massol wrote: There should be a site/clover/clover.xml file generated. It isn't, that's

[ANN] Maven Clover Plugin 2.3 for Maven 2 Released

2006-10-07 Thread Vincent Massol
The Maven team is pleased to announce the release of the Maven Clover Plugin, version 2.3 http://maven.apache.org/plugins/maven-clover-plugin/ You can run mvn -U to get the latest version of the plugin, or specify the version in your project's plugin configuration: plugin

RE: [mvn] clover-plugin documentation is very annoying

2006-10-06 Thread Vincent Massol
-Original Message- From: fuvo [mailto:[EMAIL PROTECTED] Sent: jeudi 5 octobre 2006 19:10 To: users@maven.apache.org Subject: RE: [mvn] clover-plugin documentation is very annoying Hi Vincent, Which version of the plugin are you using? Like in the examples I didn't set a

RE: [mvn] clover-plugin documentation is very annoying

2006-10-05 Thread Vincent Massol
Hi Volker, -Original Message- From: fuvo [mailto:[EMAIL PROTECTED] Sent: jeudi 5 octobre 2006 17:00 To: users@maven.apache.org Subject: [mvn] clover-plugin documentation is very annoying Hello, I just try to find out if mvn now meets our requirements (availibilty of the

RE: [mvn] clover-plugin documentation is very annoying

2006-10-05 Thread Vincent Massol
-Original Message- From: fuvo [mailto:[EMAIL PROTECTED] Sent: jeudi 5 octobre 2006 17:28 To: users@maven.apache.org Subject: RE: [mvn] clover-plugin documentation is very annoying Hi Vincent, sorry, sometimes its better to sleep over something ;-) - sorry for that post.

RE: Clover fails during compile, but project compiles normally

2006-09-27 Thread Vincent Massol
-Original Message- From: Martin van den Bemt [mailto:[EMAIL PROTECTED] Sent: mardi 26 septembre 2006 20:43 To: Maven Users List Subject: Re: Clover fails during compile, but project compiles normally Vincent Massol wrote: Hi Martin, -Original Message- From: Martin

RE: Clover fails during compile, but project compiles normally

2006-09-26 Thread Vincent Massol
Hi Michael, This is a known issue that I've fixed in v2.3 of the Clover plugin (see http://jira.codehaus.org/browse/MCLOVER-51). Thanks -Vincent -Original Message- From: Michael Waluk [mailto:[EMAIL PROTECTED] Sent: lundi 25 septembre 2006 17:36 To: users@maven.apache.org Subject:

RE: Clover fails during compile, but project compiles normally

2006-09-26 Thread Vincent Massol
Hi Martin, -Original Message- From: Martin van den Bemt [mailto:[EMAIL PROTECTED] Sent: lundi 25 septembre 2006 20:34 To: Maven Users List Subject: Re: Clover fails during compile, but project compiles normally Don't install and clover at the same time.. I think it should work

RE: Clover + Cargo + Maven2 +Jboss

2006-09-26 Thread Vincent Massol
_ From: Patrick Charbonnier [mailto:[EMAIL PROTECTED] Sent: lundi 25 septembre 2006 18:19 To: [EMAIL PROTECTED] Subject: Clover + Cargo + Maven2 +Jboss Hi, sorry to contact you directly but i didnt find a user mailiing list for maven-clover-plugin It is the Maven list.

RE: [M2] Announcement plug-in for Maven 2?

2006-09-18 Thread Vincent Massol
a Maven 2 version of the Announcement plug-in from Vincent Massol that is available for Maven 1. I looked at http://mojo.codehaus.org/ and http://maven.apache.org/plugins/ and used all my limited Google skills. Maybe I am just blind or maybe it just does not exist yet. Does someone know

RE: Cargo deploy on to a remote machine

2006-09-14 Thread Vincent Massol
Hi Prashanth, As it has been suggested, please use the cargo mailing list if you need more information and help. Note that I've also answered to you already on this list... :-( Thanks -Vincent -Original Message- From: Prashanth Krishnamurthy [mailto:[EMAIL PROTECTED] Sent: mercredi

RE: Cargo deploy on to a remote machine

2006-09-12 Thread Vincent Massol
Hi Prashanth, Please use the Cargo mailing list. What you want is not implemented yet. You need to do undeploy first in your case. Cargo is currently mimicking exactly what you get when you use the Tomcat Managa Application. However we need to do better, see

RE: Clover and additional target/src directory

2006-09-07 Thread Vincent Massol
/includesAllSourceRoots Thanks -Vincent Vincent Massol schrieb: -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: vendredi 1 septembre 2006 11:11 To: 'Maven Users List' Cc: '[EMAIL PROTECTED]' Subject: RE: Clover and additional target/src directory Hi Ingo

RE: Clover failing in maven2/Continuum1.0.3 build

2006-09-04 Thread Vincent Massol
Hi Meghan, -Original Message- From: mcp [mailto:[EMAIL PROTECTED] Sent: mercredi 2 août 2006 14:57 To: continuum-users@maven.apache.org Subject: Clover failing in maven2/Continuum1.0.3 build HI, I'm attempting to run Clover coverage analysis on serveral maven 2.0 projects

RE: Clover and additional target/src directory

2006-09-04 Thread Vincent Massol
-Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: vendredi 1 septembre 2006 11:11 To: 'Maven Users List' Cc: '[EMAIL PROTECTED]' Subject: RE: Clover and additional target/src directory Hi Ingo, -Original Message- From: Ingo Düppe [mailto

RE: Clover and additional target/src directory

2006-09-01 Thread Vincent Massol
Hi Ingo, -Original Message- From: Ingo Düppe [mailto:[EMAIL PROTECTED] Sent: vendredi 1 septembre 2006 01:22 To: Maven Users List Subject: Clover and additional target/src directory Hi, I use AndroMDA to generate my sources under /target/src and we uses clover to for code

RE: Integration Testing

2006-08-31 Thread Vincent Massol
-Original Message- From: Heck, Joe [mailto:[EMAIL PROTECTED] Sent: mercredi 30 août 2006 22:54 To: Maven Users List Subject: RE: Integration Testing We have several different mechanisms running - but most of them are honestly manual. The automated solution that one of our teams

RE: [M2] My tests are launched 3 times !

2006-08-31 Thread Vincent Massol
Hi Benoit, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: mercredi 30 août 2006 16:25 To: users@maven.apache.org Subject: [M2] My tests are launched 3 times ! Hi all, I run a 'mvn clean site install' and my tests are launched 3 times : If you run

RE: Integration Testing

2006-08-31 Thread Vincent Massol
-Original Message- From: Ruel Loehr [mailto:[EMAIL PROTECTED] Sent: jeudi 31 août 2006 16:10 To: Maven Users List Subject: RE: Integration Testing I appreciate the feedback. I think these are all valid workarounds, but have my concerns about scalability and ease of use for

RE: Cargo and Ant Properties

2006-08-31 Thread Vincent Massol
Hi Matt, -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: jeudi 31 août 2006 22:50 To: Maven Users List Subject: Cargo and Ant Properties This might be a Cargo question, but I tried to subscribe to their mailing list several times w/o success. Must be on of

RE: Cargo Goal

2006-08-30 Thread Vincent Massol
Hi Douglas, Actually I don't believe this is a cargo issue. Could you run mvn help:effective-pom? You'll probably see that you've used the wrong artifactId somewhere in a parent POM or in a profile... :-) Thanks -Vincent -Original Message- From: Douglas Ferguson [mailto:[EMAIL

RE: Ad: RE: Tomcat Deploy

2006-08-29 Thread Vincent Massol
-Original Message- From: Douglas Ferguson [mailto:[EMAIL PROTECTED] Sent: mardi 29 août 2006 13:00 To: Maven Users List Subject: RE: Ad: RE: Tomcat Deploy Ah.. Just use this instead of cargo? What's the benefit of Cargo if you can use this directly? What's the benefit of

RE: clover plugin problem

2006-08-26 Thread Vincent Massol
Hi Charlie, I’m answering on the maven list as this is the right location where to ask questions. Please use the list in the future. I don’t know what’s wrong in your case but I know how to find the answer. Please run maven in debug mode (-X) and check the console logs. More specifically

RE: How to write groovy plugins/mojos?

2006-08-25 Thread Vincent Massol
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: vendredi 25 août 2006 09:48 To: Lakshman Srilakshmanan Cc: Maven Users List Subject: RE: How to write groovy plugins/mojos? Yes, but i've encountered some issues on compiling the whole, it using some old

RE: Cargo Tomcat

2006-08-24 Thread Vincent Massol
-Original Message- From: Ralph Pöllath [mailto:[EMAIL PROTECTED] Sent: jeudi 24 août 2006 11:36 To: Maven Users List Subject: Re: Cargo Tomcat On 24.08.2006, at 00:03, Vincent Massol wrote: Hi Doug, -Original Message- From: Douglas Ferguson [mailto:[EMAIL

RE: How to write groovy plugins/mojos?

2006-08-24 Thread Vincent Massol
Benoit, You could also try posting on the mojo list as it's a mojo project, although I believe most mojo developers will also be on the maven list. -Vincent -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: jeudi 24 août 2006 16:04 To: Maven Users List;

RE: Cargo Tomcat

2006-08-23 Thread Vincent Massol
Hi Doug, -Original Message- From: Douglas Ferguson [mailto:[EMAIL PROTECTED] Sent: mercredi 23 août 2006 22:44 To: users Subject: Cargo Tomcat Anybody using cargo with tomcat? I’m curious about how you deal with quick dev cycle changes where you might want to push 1 file

RE: Maven with cargo plugin

2006-08-22 Thread Vincent Massol
Hi Franck, -Original Message- From: HUGOT Franck [mailto:[EMAIL PROTECTED] Sent: mardi 22 août 2006 09:36 To: Maven Users List Subject: Maven with cargo plugin Hello, With cargo plugin, I would like to know if it's possible in only one goal to deploy a war if it does not

RE: [m2] surefire and integration tests - discrepancy

2006-08-21 Thread Vincent Massol
Hi Tony, It's not supposed to happen. You need to give us more information so that we can be of any help. Like the error you're getting, your test case, whether there are any environment variables required by your tests, etc. Thanks -Vincent -Original Message- From: Tony Truong

RE: [m2] surefire and integration tests - discrepancy

2006-08-21 Thread Vincent Massol
From what you're showing the error is coming from your test as the stacktrace shows an AssertionFailedError which comes from your assert statement. You're showing only a small portion of your test case. Do you have a setup() method or some statics like a suite() method? Are you sure you're

RE: cargo deploy jboss datasource-ds.xml file?

2006-08-09 Thread Vincent Massol
Hi James, You should post to the cargo lists. You'll probably get more answers there. If you post there please be sure to tell us if you're really talking about an oracle-ds.xml file or some jboss ds file. Thanks -Vincent -Original Message- From: James Richards [mailto:[EMAIL

RE: Cargo-plugin 0.3-SNAPSHOT problem?

2006-08-09 Thread Vincent Massol
Hi Michael, Please post to the cargo lists. When you post there please be sure to post your effective pom (mvn help:effective-pom). Also you shouldn't have both start and deploy goals as start does static deployment. Check the online docs. Let's continue this discussion on the cargo list. Thanks

RE: Maven Philosophy...

2006-08-07 Thread Vincent Massol
-Original Message- From: Jimisola Laursen [mailto:[EMAIL PROTECTED] Sent: dimanche 6 août 2006 19:49 To: users@maven.apache.org Subject: Re: Maven Philosophy... Scott Battaglia wrote: Projects released under an open source license can qualify for a non-commercial

RE: Cactus plug-in for Maven 2.0

2006-08-06 Thread Vincent Massol
-Original Message- From: Rakesh Kalra [mailto:[EMAIL PROTECTED] Sent: jeudi 3 août 2006 22:12 To: users@maven.apache.org Subject: Cactus plug-in for Maven 2.0 Is any work going on for developing cactus plug-in for Maven 2.0? There has been several discussion thread about this

RE: Maven Philosophy...

2006-08-06 Thread Vincent Massol
-Original Message- From: Jimisola Laursen [mailto:[EMAIL PROTECTED] Sent: dimanche 6 août 2006 15:05 To: users@maven.apache.org Subject: RE: Maven Philosophy... vmassol wrote: [snip] FWIW this is currently supported in the Clover plugin. The plugin does this by

RE: Cargo Plugin

2006-07-30 Thread Vincent Massol
. Thanks -Vincent PS: Moving this mail to the cargo dev list. Please follow me there to continue the discussion. Alex On 7/29/06, Vincent Massol [EMAIL PROTECTED] wrote: Hi Alex, _ From: Alex Turner [mailto:[EMAIL PROTECTED] Sent: samedi 29 juillet 2006 21:03 To: Maven Users

RE: Cargo Plugin

2006-07-29 Thread Vincent Massol
Hi Alex, -Original Message- From: Alex Turner [mailto:[EMAIL PROTECTED] Sent: samedi 29 juillet 2006 06:46 To: Maven Users List Subject: Re: Cargo Plugin Thanks for the pointer - the documentation isn't the easiest to follow, but I figured it out. What do you think would the

RE: Cargo Plugin

2006-07-29 Thread Vincent Massol
, Vincent Massol [EMAIL PROTECTED] wrote: Hi Alex, -Original Message- From: Alex Turner [mailto: mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] Sent: samedi 29 juillet 2006 06:46 To: Maven Users List Subject: Re: Cargo Plugin Thanks for the pointer - the documentation isn't the easiest

RE: M2-snapshot error

2006-07-27 Thread Vincent Massol
PROTECTED] Subject: RE: M2-snapshot error Vincent Massol wrote on Wednesday, July 26, 2006 7:25 PM: Done. Try it. Make sure you use -cpu or -u (can never recall which one) or delete the cargo files in your local repo. Well, infact -cpu should update the plugins, while -U should look

RE: Code coverage with AspectJ?

2006-07-26 Thread Vincent Massol
Hi Howard, -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: mercredi 26 juillet 2006 17:19 To: Maven Users List Subject: Code coverage with AspectJ? Does anyone know how to generate a code coverage report when using AspectJ in a project? The Clover

RE: M2-snapshot error

2006-07-26 Thread Vincent Massol
Hi Matilda, I did a cargo snapshot deploy at around that time and the deploy failed (some http connection failed in maven). I did a new deploy and it worked. However it's possible that it cause some problem. I'm going to clean up the repo and do a deploy again. I've found in the past that if

RE: M2-snapshot error

2006-07-26 Thread Vincent Massol
: M2-snapshot error Thank you! Matilda -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 12:53 PM To: 'Maven Users List' Subject: RE: M2-snapshot error Hi Matilda, I did a cargo snapshot deploy at around that time

RE: Code coverage with AspectJ?

2006-07-26 Thread Vincent Massol
this. To use load-time weaving you must fork at least once and provide the javaagent as an argline -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 26, 2006 8:42 AM To: 'Maven Users List' Subject: RE: Code coverage with AspectJ

RE: clover:save-history goal for 2.x?

2006-07-25 Thread Vincent Massol
to in the standard clover report). Can you let me know if using Ant is the only way to do it? Could you please open a jira issue for this and I'll look into it? Thanks -Vincent On 6/26/06, Vincent Massol [EMAIL PROTECTED] wrote: Michael, Just to let you know that I've released v2.2

RE: How to generate clover historical HTML report?

2006-07-25 Thread Vincent Massol
Dup of previous email... -Vincent -Original Message- From: Michael Waluk [mailto:[EMAIL PROTECTED] Sent: lundi 24 juillet 2006 17:03 To: Maven Users List Subject: How to generate clover historical HTML report? Hi, With the latest version of the clover plugin I can now generate

RE: post-integration-test not run if integration-test fails (problem for continuum)

2006-07-25 Thread Vincent Massol
Hi Eric, -Original Message- From: Eric Brown [mailto:[EMAIL PROTECTED] Sent: mardi 25 juillet 2006 18:54 To: Maven Users List Subject: post-integration-test not run if integration-test fails (problem for continuum) I have to start up 2 servers and a bunch of webservices in pre-

RE: Using continuum for building cargo?

2006-07-23 Thread Vincent Massol
at every build which is just wrong and would be way too long. Any idea? Thanks -Vincent -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: dimanche 23 juillet 2006 10:11 To: 'continuum-users@maven.apache.org' Subject: FW: Using continuum for building cargo

Cargo uberwar PITA (was RE: Converting AppFuse to a Maven 2 Project)

2006-07-19 Thread Vincent Massol
Hi Alex, -Original Message- From: Alex Shneyderman [mailto:[EMAIL PROTECTED] Sent: mercredi 19 juillet 2006 13:42 To: Maven Users List Subject: Re: Converting AppFuse to a Maven 2 Project [snip] [...] so take a look at cargo:uberwar (cargo.codehaus.org). It allows for custom

RE: [M2] Maven Deployment Using Cargo To WebSphere

2006-07-17 Thread Vincent Massol
Hi Peter, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: lundi 17 juillet 2006 10:40 To: users@maven.apache.org Subject: [M2] Maven Deployment Using Cargo To WebSphere Hi I have just reading the documentation looking for remote deployment to IBM

RE: Maven book: feedback

2006-07-16 Thread Vincent Massol
excellent, and I said it a few times on this list. It's even one of the books I used the most often for some time. And when Vincent Massol announced at JavaPolis in last december that a free Maven2 book was on its way, I was very excited, because I dreamt of such a good book combined with all

RE: Maven book: feedback

2006-07-16 Thread Vincent Massol
that kind of things with Drupal and it gave quite good results. What do you think ? Open Source documentation ? 2006/7/16, Vincent Massol [EMAIL PROTECTED]: Hi Sebastien, I'm glad that you liked the m1 book ;-) but I'm sorry that you don't like the new m2 one... There are probably

Re: EJB3 Web project with cargo, jetty6

2006-07-16 Thread Vincent Massol
Hi Tony, On 7/14/06, Tony Hillerson [EMAIL PROTECTED] wrote: Hello all, I have a project that will use EJB3.0, and as far as I know only a few containers support that. I'm using jBoss now. My question is along the lines of the Improving Web Development Productivity section of the Maven Book.

RE: Issue with maven 2.0.3, cargo and weblogic 8.x

2006-07-13 Thread Vincent Massol
Hi Bryan, -Original Message- From: Pauquette, Bryan [mailto:[EMAIL PROTECTED] Sent: jeudi 13 juillet 2006 21:40 To: Maven Users List Subject: Issue with maven 2.0.3, cargo and weblogic 8.x I am running into an issue with maven2.0.4 and cargo and deploying an ejb-jar to

RE: Email Limiting?

2006-07-05 Thread Vincent Massol
Hi Mark, I'd love this too. See http://jira.codehaus.org/browse/CONTINUUM-634. You can even vote for it ;-) Unfortunately there's no fix for right now for this issue meaning there's no plan to include it as yet. Thanks -Vincent -Original Message- From: news [mailto:[EMAIL PROTECTED]

RE: Deployment problem with Jboss

2006-06-27 Thread Vincent Massol
Hi Vinay, This looks like a cargo issue. You should post on the Cargo list so that you can get help. When you do so it would be good to post your pom.xml and attach the log files to your mail. Thanks -Vincent -Original Message- From: Vinay Kumar [mailto:[EMAIL PROTECTED] Sent: mardi

[ANN] Maven Clover Plugin 2.2 for Maven 2 Released

2006-06-26 Thread Vincent Massol
The Maven team is pleased to announce the release of the Maven Clover Plugin, version 2.2 http://maven.apache.org/plugins/maven-clover-plugin/ You can run mvn -U to get the latest version of the plugin, or specify the version in your project's plugin configuration: plugin

  1   2   3   4   5   6   7   >