[ANN] CodeNarc Maven Plugin version 0.16.1-beta-1 Released

2012-02-27 Thread LeClaire Garvin
Hi, The Mojo team is pleased to announce the release of version 0.16.1-beta-1 of the CodeNarc Maven Plugin. CodeNarc scans Groovy source code, looking for violations of predefined or custom rules and generates an HTML report of the results. These rules include checks for coding standards, or

[maven-surefire-plugin] Issue with -Dtest param under Windows

2012-02-27 Thread nodje
I'm having an issue with 'mvn test -Dtest=' It works fine under Linux and OsX but under Windows the test is simply not found. I'm using latest TestNG. Any clue on what the problem could be? -- View this message in context: http://maven.40175.n5.nabble.com/maven-surefire-plugin-Issue-with-Dtest

Re: Howto activate ProxyProfile

2012-02-27 Thread Martin Eigenbrodt
Sorry for answering so late. The described approach would activate a profile base on a property. I don't see any relationship to a proxy profile (Whatever that is). Once again: There is no proxies element within profile. Thus "" can NOT be used to configure proxies. M. Am 25.02.2012 um 00:47

Re: How to resolve maven dependencies inside the maven plugin?

2012-02-27 Thread Wayne Fay
> I need to get all dependencies(including transitive) for project inside my > maven plugin. This is covered by the documentation: http://maven.apache.org/developers/mojo-api-specification.html Search for "requiresDependencyResolution" and you will find it right away. Wayne

Re: Howto activate ProxyProfile

2012-02-27 Thread Wayne Fay
> (https://maven.apache.org/xsd/settings-1.0.0.xsd) has the same problem. Also > I don't see > how to assign an id to a proxy and how I'd pass it at the command line. The > Documentation > is either wrong here or missing some information. There is very clearly an element in the node. The defau

Re: maven antrun plugin 1.7 ignores second execution

2012-02-27 Thread Wayne Fay
I heard back from Kai over the weekend and wanted to make sure this made it back to the list for future Google and Nabble searchers... ## Ok, tested it now, was absolutely my fault. If I want the post-integration-test phase to run it is not sufficient to call 'mvn integration-test', use 'mvn v

repository id question

2012-02-27 Thread Chad.Davis
Are there issues with the re-use of the same repository id across the various repository declarations? As "identifiers", it seems like they should each be unique. Is there anything wrong with the following . . .

Re: scm clearcase plugin: why URL is needed

2012-02-27 Thread Wayne Fay
> What I was expecting was this: using the clear case plugin, my maven will > connect to the stream/vob in the server and update the view. What it did was > execute a command for which the URl was not necessary at all. I dont think Perhaps there is an expectation that, while the plugin today calls

Re: [maven-surefire-plugin] Issue with -Dtest param under Windows

2012-02-27 Thread Wayne Fay
> I'm having an issue with 'mvn test -Dtest=' > > It works fine under Linux and OsX but under Windows the test is simply not > found. Can you create a sample project that demonstrates this failure in the functionality? If not, the likelihood of someone actually looking into this is quite low. Way

Re: Set my own logger

2012-02-27 Thread Wayne Fay
> I'd like to replace the default Maven logger implementation with my own. I > assume > I need to create an extension but if that is try, how do I get a list of > mojo's to call > setLog on? Is there a Plexus injection way to do this. I've seen other people ask this question before on this list.

Re: repository id question

2012-02-27 Thread Stephen Connolly
if they all use the same credentials, I would say no issues On 27 February 2012 16:08, wrote: > Are there issues with the re-use of the same repository id across the various > repository declarations?  As "identifiers", it seems like they should each be > unique.  Is there anything wrong with

RE: repository id question

2012-02-27 Thread Chad.Davis
So, the id is only used to match the credential declarations ? > -Original Message- > From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] > Sent: Monday, February 27, 2012 9:44 AM > To: Maven Users List > Subject: Re: repository id question > > if they all use the same credent

Re: repository id question

2012-02-27 Thread Manfred Moser
Which by extension means that you do want to use different access rights for them at some stage you have to change all the identifiers.. So I would have them different.. manfred On 12-02-27 08:44 AM, Stephen Connolly wrote: if they all use the same credentials, I would say no issues On 27 Fe

Re: generating checksums for assemblies

2012-02-27 Thread Simone Tripodi
Hi Benson! indeed, in that case I a have a little price to pay because I am forced to proceed manually for "non maven" artifact releases. Thanks for your reply! -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ http://twitter.com/simonetripodi http://www.99soft

Re: repository id question

2012-02-27 Thread Manfred Moser
or any other way you want to id the repo e.g. in a profile or command line property .. On 12-02-27 08:49 AM, chad.da...@emc.com wrote: So, the id is only used to match the credential declarations ? -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent

Re: [maven-surefire-plugin] Issue with -Dtest param under Windows

2012-02-27 Thread Dan Tran
Just found out , we also hit similar issue with -Dtest param on windows. Revert back to surefire 2.11 fixes it the issue -D On Mon, Feb 27, 2012 at 8:10 AM, Wayne Fay wrote: >> I'm having an issue with 'mvn test -Dtest=' >> >> It works fine under Linux and OsX but under Windows the test is simp

[ANN] LESS CSS Maven Plugin 1.0-beta-3 Released

2012-02-27 Thread Marcel Overdijk
Hi, The Mojo team is pleased to announce the release of the LESS CSS Maven Plugin version 1.0-beta-3. This plugin can be used to compile LESS sources to CSS stylesheets. See http://www.lesscss.org/ for more information about LESS. http://mojo.codehaus.org/lesscss-maven-plugin To get this update,

mvn site:stage is failing on multi-module project

2012-02-27 Thread Daivish Shah
Hi, I have project structure as below. maven-parent-project maven-ejb maven-schema maven-ws maven-ear I have all require entry to generate the site in all POM.XML I am able to execute "mvn site" and mvn site:site command successfully. But when i am trying to

Re: mvn site:stage is failing on multi-module project

2012-02-27 Thread Lukas Theussl
site:stage is just a local preview of site:deploy, you need to specify a distributionManagement.url in the parent pom so links between modules will be consistent with the deployed site. HTH, -Lukas Daivish Shah wrote: Hi, I have project structure as below. maven-parent-project