Re: Release plugin & git repo with multiple projects

2010-04-26 Thread Jean-Laurent de Morlhon
Thanks ! Migration would be a bit stiffer than I thought, but it make sense. Jean-Laurent On Mon, Apr 26, 2010 at 10:18 PM, Justin Edelson wrote: > Jean-Laurent de Morlhon wrote: > >> You say the git way of doing things is 1 project -> 1 git repository, I >> understand,

Re: Release plugin & git repo with multiple projects

2010-04-26 Thread Jean-Laurent de Morlhon
; >> > >> I am by no means a git expert, so I could be mistaken about this. > >> > >> Justin > >> > >> > >> > >> On 4/26/10 9:21 AM, Kathryn Huxtable wrote: > >>> Having recently switched from svn to git for most o

Release plugin & git repo with multiple projects

2010-04-26 Thread Jean-Laurent de Morlhon
We're considering migrating from svn to git, we stumble on the maven-release-plugin usage with git. We think we prefer to use a single repository for many independently built projects like : foobar-repo.git |-> project-foo/ ||-> pom.xml ||–> module A/ ||-> module B/ |

[ANN] Maven2 javancss plugin 2.0

2009-06-10 Thread Jean-Laurent de Morlhon
The Mojo team is pleased to announce the javancss-maven-plugin 2.0 release ! http://mojo.codehaus.org/javancss-maven-plugin/ This plugin allows user to: - Compute complexity (CCN) and quantity (NCSS) metrics on your code - Create a report displaying those number. Here's the release note : Rele

Re: [M2] Wagon FTP doesn't work in 2.0.5

2007-02-20 Thread Jean-Laurent de Morlhon
AFAIK it's already in JIRA : http://jira.codehaus.org/browse/WAGONFTP-10 On 2/20/07, Siegmann Daniel, NY <[EMAIL PROTECTED]> wrote: <> <<> Can't even get my grammar right. :( ~Daniel - To unsubscribe, e-mail: [EMAIL PROTECTE

[ANN] Maven2 javancss plugin 2.0-beta-2

2007-02-09 Thread jean-laurent de morlhon
The Mojo team is pleased to announce the javancss-maven-plugin 2.0-beta-2 release! http://mojo.codehaus.org/javancss-maven-plugin/ This plugin allows user to: - Compute complexity (CCN) and quantity (NCSS) metrics on your code - Create a report displaying those number. Here's the release note

Re: [ANN] Maven2 javancss plugin 2.0-beta-1

2006-06-22 Thread jean-laurent de morlhon
On 6/22/06, Geoffrey De Smet <[EMAIL PROTECTED]> wrote: Any chance that it will be synced to the central repo too? jean-laurent de morlhon wrote: > As stated at the end of the announcement email the repository where > this plugin is located is : > > repository.codehaus.org. >

Re: [ANN] Maven2 javancss plugin 2.0-beta-1

2006-06-22 Thread jean-laurent de morlhon
Sounds very attractive, but through which repository is it available? BTW the source complains that it cannot find the parent pom. Roald Bankras Software Engineer JTeam b.v. -Original Message- From: jean-laurent de morlhon [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 5:08 PM To: Maven

[ANN] Maven2 javancss plugin 2.0-beta-1

2006-06-21 Thread jean-laurent de morlhon
The Mojo team is pleased to announce the javancss-maven-plugin 2.0-beta-1 release! http://mojo.codehaus.org/javancss-maven-plugin/ This plugin allows user to: - Compute complexity (CCN) and quantity (NCSS) metrics on your code - Create a report displaying those numbers This plugin is current

Re: [ANN] Mojo Exec plugin 1.0.1

2006-06-21 Thread jean-laurent de morlhon
Doesn't seem to be synced, I dunno if this is expected or not. Compare http://www.ibiblio.org/maven2/org/codehaus/mojo/mojo/ with http://repository.codehaus.org/org/codehaus/mojo/mojo/ Ibiblio contains mojo parent pom version 1 to 7 and codehaus 8 to 9. Sames goes for plugins... Can somebody te

Re: Stand-alone app

2006-05-31 Thread jean-laurent de morlhon
Erik, If I understand what you want to do clearly, you can do everything without writing a plugin. Just use the maven-jar-plugin and maven-assembly-plugin. The following is extracted from a standalone application I built with m2 a few month ago (assembly plugin as slightly changed since then and

Re: [M2] Newbie q: Looking for clear example on creating Ant Plugin/M ojo's

2006-04-27 Thread jean-laurent de morlhon
Your xxx.build.xml / xxx.mojos.xml should be placed by default into the src/main/scripts directory of your plugin. I didn't hjave a chance to take a look at this chapter of the book, but there is a rather comprehensive documentation here : http://maven.apache.org/guides/plugin/guide-ant-plugin-de

Re: RE : [m202] Custom built plugin

2006-03-23 Thread jean-laurent de morlhon
I've got the exact same problem. It's only happening with cobertura. As I have compiled other plugins which aren't affected by the problem. Can't find anything (tried playing with the various meta-data without any success) Anyone as found a viable solution, besides copying locally the plugin ? O

Re: [M2] Deploying jar with classifier fails...

2006-03-06 Thread jean-laurent de morlhon
'll file a Jira issue within the day. On 3/6/06, Carlos Sanchez <[EMAIL PROTECTED]> wrote: > You need to run mvn with -X and paste the output. > Accès refusé looks like you don't have permissions in the remote server > > On 3/1/06, jean-laurent de morlhon <[EMAIL PROT

[M2] Deploying jar with classifier fails...

2006-03-01 Thread jean-laurent de morlhon
Hi all, In order to produce a single artifact with a classifier, I configured the jar plugin as follow in my pom. org.apache.maven.plugins maven-jar-plugin someclassifier however anytime I try do deploy (mvn deploy) it fails with : [ERROR] BUILD ERROR [INFO] ---

Re: Plugin for class line count?

2006-02-11 Thread jean-laurent de morlhon
I did the maven2 plugin port and I can confirm that javancss does not support java 1.5 syntax, the program itself (not the plugin) has not been updated since september 2002 :( I was looking for a way to get the source configuration parameter of the maven-compiler-plugin to skip the javancss analys

Re: [m2] Doxia & color

2006-01-24 Thread jean-laurent de morlhon
we'd need this for other sinks that don't support CSS? > > - Brett > > On 1/13/06, jean-laurent de morlhon <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Is there a way using doxia to write a portion of text in color ? > > I mean s

[m2] Doxia & color

2006-01-13 Thread jean-laurent de morlhon
Hi, Is there a way using doxia to write a portion of text in color ? I mean something around this : sink.color( RED ); sink.text( "SomeTextToPutInColor" ); sink.color_(); The above does not exist, but I can't find a way to do it. Is it even possible today ? I just want to put in red an er