Re: AW: AW: org.codehaus.modello.ModelloCli fails parsing maven.mdo on OpenVMS

2011-01-23 Thread Hervé BOUTEMY
Modello uses XPP3 parser from plexus-utils, without any way to use another parser (see [1]) AFAIK, Maven models are very simple XML documents, without any non-ascii characters that could make parsing a little bit tricky. Can you zip maven.mdo taken from your OpenVMS machine and send it to me

Maven gpg plugin stuck while signing

2011-01-23 Thread Tommaso Teofili
Hi all, I'm using the Maven release plugin (in dryRun mode) to prepare a release but the mvn release:prepare -DdryRun=true command gets stuck while signing the artifacts with gpg-plugin. Here's what I see in normal mode: ... [INFO] [INFO] Building zip:

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread Simone Tripodi
Ciao Tommy ;) I already met this problem, It's not a of key-size related issue. Try setting the mavenExecutorId=forked-path so when releasing maven will be forked and the gpg-plugin will prompt you insert the gpg passphrase. Otherwise you can use the -Dgpg.passphrase=XXX property but its use is

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread oliver
Am 23.01.2011 um 18:51 schrieb Simone Tripodi: Ciao Tommy ;) I already met this problem, It's not a of key-size related issue. Try setting the mavenExecutorId=forked-path so when releasing maven will be forked and the gpg-plugin will prompt you insert the gpg passphrase. Otherwise you can

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread Simone Tripodi
Hi Oliver, sure you can do it, just move the gpg plugin into a proper 'release' profile, and configure the release-plugin to activate it when releasing. Take a look how I configured the Google Doclava[1] pom to see how it works, follow below some snippets. HTH, all the best, Simo {code} build

reactor, plugin dependency, m3

2011-01-23 Thread Benson Margulies
I have a multi-module build. The first module packages up some some checkstyle rules, and the parent POM at the top calls out that artifact as a dependency of the checkstyle plugin. Would it surprise anyone to hear that this won't build the first time, but builds subsequently once the artifact is

Work flow for isolated internal repository

2011-01-23 Thread Guo Du
In a commercial software development environment, production code will rely on artifacts which may come from public domain such as maven central repository. For those artifacts from external, would be validated with some process such as checksum/javadoc/sources/license/lawyer, once passed those

m2eclipse-subversive and Subversive Integration for the M2Eclipse relation

2011-01-23 Thread Stevo Slavić
Hello Maven users, Jason van Zyl just announced m2eclipse-subversive http://twitter.com/#!/jvanzyl/status/29312097812750336 Does anyone know how is that project related to Subversive Integration for the M2Eclipse, Subversive plugin integration feature? Regards, Stevo.

Re: reactor, plugin dependency, m3

2011-01-23 Thread Justin Edelson
On Jan 23, 2011, at 5:09 PM, Benson Margulies bimargul...@gmail.com wrote: I have a multi-module build. The first module packages up some some checkstyle rules, and the parent POM at the top calls out that artifact as a dependency of the checkstyle plugin. Would it surprise anyone to hear

Re: Work flow for isolated internal repository

2011-01-23 Thread Ron Wheeler
1. Developer enables the access to internal repository(Nexus or other). 2. Developer add new dependencies as artifacts/plugins which available from external repository. 3. Developer test the new pom setup and it works on local machine 4. Maven and Nexus will automatically load new dependencies

Re: m2eclipse-subversive and Subversive Integration for the M2Eclipse relation

2011-01-23 Thread Jason van Zyl
Use the m2eclipse list. This is not the place to ask m2eclipse questions. On Jan 23, 2011, at 5:21 PM, Stevo Slavić wrote: Hello Maven users, Jason van Zyl just announced m2eclipse-subversive http://twitter.com/#!/jvanzyl/status/29312097812750336 Does anyone know how is that project

Re: Work flow for isolated internal repository

2011-01-23 Thread Anders Hammar
You could be somewhat aided by the procurement feature of Nexus Pro (the commercial edition of the Nexus repo manager): http://www.sonatype.com/books/nexus-book/reference/procure.html Also, One thing that you might want to have in mind is two have separate repositories for dependencies and

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread Tommaso Teofili
Many thanks Simo! :-) I'm going to try this way and let you know. Cheers, Tommaso 2011/1/23 Simone Tripodi simonetrip...@apache.org Hi Oliver, sure you can do it, just move the gpg plugin into a proper 'release' profile, and configure the release-plugin to activate it when releasing. Take a