Conditionnal adding of parent section in generated archetype

2013-12-20 Thread JeremieB.
Hello, I created an archetype to create a new project (a project root pom), and another one to create a module of some kind. I want them separated - I don't want a multi-module archetype. My use-case is when I create a new module from archetype, in a folder already containing my project root pom.

[ANN] Maven Skins Parent 8 Released

2013-12-20 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Skins Parent version 8 http://maven.apache.org/pom/skins/ You should specify the version in your project's configuration: plugin groupIdorg.apache.maven.skins/groupId artifactIdmaven-skins/artifactId

[ANN] Maven Fluido Skin version 1.3.1 released

2013-12-20 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven Fluido Skin, version 1.3.1 http://maven.apache.org/skins/maven-fluido-skin/ You should specify the version in your project's site configuration: skin groupIdorg.apache.maven.skins/groupId

[ANN] Apache Maven JXR 2.4 released

2013-12-20 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Apache Maven JXR, version 2.4 This module generates browsable HTML pages from Java source code. http://maven.apache.org/jxr/ You should specify the version in your project's plugin configuration: plugin

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread Martin Gainty
MGClement as suggested could your submit your patch MGWhat is the question about Hudson? Date: Thu, 19 Dec 2013 21:44:18 -0800 From: poubelle2...@limule.com To: users@maven.apache.org Subject: Re: Maven for C/C++ development usable as well? Hudson server? All is here:

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread pizaninja
I don't understand... I've already done the job here: https://bitbucket.org/opencontinuous/maven-native/commits/6a09a45bdf06/ It's a diff, all is clear, no? -- View this message in context:

Re: How to add a dependency programmatically for the compile phase?

2013-12-20 Thread Benoit Billington
Thanks Anders but unfortunately the content of that article didn't talk about the thing we need. which is adding content of a dependency to the classpath. This article is talking about supporting new extensions which we already do by supporting aar. But an .aar contains a .jar that needs to be

Re: How to add a dependency programmatically for the compile phase?

2013-12-20 Thread Anders Hammar
Well, it doesn't talk about the solution you're talking about, which I pointed out in my initial mail. The solution I had in mind, but don't really know if it is doable, would be to have a custom packaging type (which is packaged as a plugin as explained in the article) which would map to the .aar

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread pizaninja
That's done, after 2 hours of fight against svn (install svn, read documentation, apply diff, generate patch, remember login access in jira, etc...) It's exactly as Dan Tran expects it: http://jira.codehaus.org/browse/MOJO-1647 I must admit that even with this patch, I did not success to convince

Fine versioning on multi-modules project ?...

2013-12-20 Thread Benoît Berthonneau
Hi all, I need your point of view/opinion/help on the way to version modules on multi-modules Maven project. My question: is it really possible ? I’ve the following (simplified) Maven project: Parent (version 1.0) |__ module A (version 1.0) |__ module B (version 1.0, that depends

Re: property relative to pom

2013-12-20 Thread Alejandro . Endo
Thank you for the reply Curtis. But I'm not sure I understand. I don't see the point of overwriting the property in every child pom, the whole point of having the property is to define it only once in the parent pom. If i have to define the property in every child i will just configure the plugin

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread pizaninja
I'm not able to make apply the patch. That's too complex for me. Look at this: https://jira.codehaus.org/browse/MOJO-1647?focusedCommentId=337757page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-337757 -- View this message in context:

RE: property relative to pom

2013-12-20 Thread Benoît Berthonneau
Hi Alejandro, I assume that all your children are at the same level, did you try? configuration outputDirectory../target/outputDirectory /configuration Anyway, this (strange) need could lead to undesired border effects: what happened during clean goal on a child? -- all others children are

RE: Problems installing maven on windows 7

2013-12-20 Thread jacqueline George
Hi It's me again. Still having problems *sigh* I followed your kind suggestions and made the following changes M2_HOME C:\Users\user\Desktop\ApacheMaven\apache-maven-3.1.1 Path

[ANN] Appassembler Maven Plugin version 1.7

2013-12-20 Thread Karl Heinz Marbaise
Hi to all, I'd like announce the release version 1.7 of the appassembler-maven-plugin which contains a few new features and primarily bug fixes The Application Assembler Plugin is a Maven plugin for generating scripts for starting java applications. All dependencies and the artifact of the

RE: Problems installing maven on windows 7

2013-12-20 Thread Benoît Berthonneau
Hi Jacqueline, The error is clear: Java is not well configured on your env. Set a JAVA_HOME variable to your java installation folder, add it (ie: %JAVA_HOME%\bin) to your PATH (I assume that Java is installed on your Windows) Benoît. -Message d'origine- De : jacqueline George

RE: Problems installing maven on windows 7

2013-12-20 Thread jacqueline George
Excuse my ignorance. How do I do that specifically. I'm quite technical but I don't know how to do that. :os -Original Message- From: Benoît Berthonneau [mailto:ben...@berthonneau.com] Sent: 20 December 2013 22:13 To: 'Maven Users List' Subject: RE: Problems installing maven on

Re: Problems installing maven on windows 7

2013-12-20 Thread Cemo
On 21 December 2013 00:30, jacqueline George jacquelinegeo...@balance.eclipse.co.uk wrote: Excuse my ignorance. How do I do that specifically. I'm quite technical but I don't know how to do that. :os Hi, You are almost ok. You need to install or find Java in your file system. It is almost

RE: Problems installing maven on windows 7

2013-12-20 Thread jacqueline George
Thanks I will give this a go. It's pretty late here so I will try this tomorrow -Original Message- From: Cemo [mailto:cemalettin@gmail.com] Sent: 20 December 2013 22:40 To: Maven Users List Subject: Re: Problems installing maven on windows 7 On 21 December 2013 00:30, jacqueline

Re: property relative to pom

2013-12-20 Thread Curtis Rueden
Hi Alejandro, I don't see the point of overwriting the property in every child pom, the whole point of having the property is to define it only once in the parent pom. Yes, you have to override the rootdir property in every child. But you don't have to replicate e.g. plugin configuration in

RE: Problems installing maven on windows 7

2013-12-20 Thread Martin Gainty
George- if youre using Eclipse you will need to set the JAVA_HOME in startup .eclipserc edit ~/.eclipserc and add a JAVA_HOME= line to that file. http://rpmfind.net/linux/RPM/mandriva/devel/2006.0/i586/media/contrib/eclipse-platform-3.1.0-8mdk.i586.html Cheers, Martin Gainty

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread Martin Gainty
Date: Fri, 20 Dec 2013 07:44:57 -0800 From: poubelle2...@limule.com To: users@maven.apache.org Subject: RE: Maven for C/C++ development usable as well? Hudson server? That's done, after 2 hours of fight against svn (install svn, read documentation, apply diff, generate patch,

javadoc errors

2013-12-20 Thread Richard Rodseth
We are having the following problem generating javadocs using mvn javadoc:aggregate -DskipTest=true -P site,\!build-ui [ERROR] Exit code: 1 - javadoc: warning - Multiple sources of package comments found for package org.osgi.framework [ERROR] javadoc: warning - Multiple sources of package

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread pizaninja
I must admit that even with this patch, I did not success to convince my colleagues (who were using Borland C++ under MS smopuiM) to use maven. They use svn cross references to mix sources files. MGmaven-jxr-plugin The JXR plugin has 2 goals: - * {{{plugin-info.html}jxr:jxr}} is used to

RE: Maven for C/C++ development usable as well? Hudson server?

2013-12-20 Thread pizaninja
Dan Tran has just applied the patch. Thank you. -- View this message in context: http://maven.40175.n5.nabble.com/Maven-for-C-C-development-usable-as-well-Hudson-server-tp5430131p5779244.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: javadoc errors

2013-12-20 Thread Mirko Friedenhagen
Hello Richard, a wild guess: you have the same packages included by different dependencies (guava was once called Google collections, some jakarta-commons components were available via multiple groupId/artifactId combinations). Regards Mirko -- Sent from my mobile On Dec 21, 2013 12:53 AM,