RE: Some questions about customizing the build on the Maven command line

2012-05-10 Thread KARR, DAVID
> -Original Message- > From: Wayne Fay [mailto:wayne...@gmail.com] > Sent: Thursday, May 10, 2012 7:24 PM > To: Maven Users List > Subject: Re: Some questions about customizing the build on the Maven > command line > > > The directory that agg pom is in has an additional directory (call it

Re: Some questions about customizing the build on the Maven command line

2012-05-10 Thread Wayne Fay
> The directory that agg pom is in has an additional directory (call it > "level3") that is not in > the modules list, but is also a pom module.  I have a basic idea of how I > could specify a > command line to run a build in "level2" that would build all the specified > modules, and > also buil

Some questions about customizing the build on the Maven command line

2012-05-10 Thread KARR, DAVID
I have a top-level agg pom (call it "level1") that has a module with an agg pom (call it "level2") that specifies several modules. The directory that agg pom is in has an additional directory (call it "level3") that is not in the modules list, but is also a pom module. I have a basic idea of h

Re: [ANN] plan-maven-plugin v1.1 released

2012-05-10 Thread Hervé BOUTEMY
Le jeudi 10 mai 2012 11:27:38 Carlo Sciolla a écrit : > 2012/5/9 Ben Tatham > > > Perhaps you could port this feature to be a patch to the > > maven-help-plugin > It's not the first time I get this suggestion, and it would indeed fit well > in there. I'll reach out to the help plugin devs to see

Re: Maven Changes Plugin 2.8?

2012-05-10 Thread Benson Margulies
I've started the vote for maven-changes-plugin 2.7.1. On Thu, May 10, 2012 at 1:55 PM, Swapnil Sapar wrote: > Thanks. > I understand there is an elaborate plugin release process. > When can we expect to have 2.8 released? > > Thanks, > swapsapar > > On Wed, May 9, 2012 at 6:43 AM, Benson Margulie

Re: Maven Changes Plugin 2.8?

2012-05-10 Thread Benson Margulies
In a few days. On Thu, May 10, 2012 at 1:55 PM, Swapnil Sapar wrote: > Thanks. > I understand there is an elaborate plugin release process. > When can we expect to have 2.8 released? > > Thanks, > swapsapar > > On Wed, May 9, 2012 at 6:43 AM, Benson Margulies wrote: > >> On Wed, May 9, 2012 at 2:

Re: Maven Changes Plugin 2.8?

2012-05-10 Thread Swapnil Sapar
Thanks. I understand there is an elaborate plugin release process. When can we expect to have 2.8 released? Thanks, swapsapar On Wed, May 9, 2012 at 6:43 AM, Benson Margulies wrote: > On Wed, May 9, 2012 at 2:41 AM, Swapnil Sapar wrote: > > smart move :) > > Thank you very much. I am now happy

Re: Filters only work in 3.0.4

2012-05-10 Thread Tim Pizey
On 10 May 2012 17:44, I wrote: > Hi, > > I have a filters block: >     >       > /etc/${project.artifactId}/${project.artifactId}.properties >     > as given here: > http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html > I was delighted with this! > > However I find that t

Re: Using maven to create portable projects (profile dependencies)

2012-05-10 Thread Manfred Moser
On Thu, May 10, 2012 8:09 am, Ron Wheeler wrote: > On 10/05/2012 3:06 AM, Julian Kalinowski wrote: >> Hi, >> I'm currently trying port a Java desktop project to Android using maven. >> It has several modules which have different dependencies. >> As the Android Java Runtime doesn't have packages suc

Filters only work in 3.0.4

2012-05-10 Thread Tim Pizey
Hi, I have a filters block: /etc/${project.artifactId}/${project.artifactId}.properties as given here: http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html I was delighted with this! However I find that this has only started to work in 3.0.4, which I happ

Re: convert Ant script to Maven

2012-05-10 Thread John Patrick
Have you used maven before or are you totally new to maven? Do you have to get your ant code snippet into an existing maven project or a new project just for this snippet? On 10 May 2012 15:58, Ron Wheeler wrote: > Did you look at the Ant plug-in? > > Ron > > > On 10/05/2012 7:52 AM, chavanmukes

Re: Using maven to create portable projects (profile dependencies)

2012-05-10 Thread Ron Wheeler
On 10/05/2012 3:06 AM, Julian Kalinowski wrote: Hi, I'm currently trying port a Java desktop project to Android using maven. It has several modules which have different dependencies. As the Android Java Runtime doesn't have packages such as awt or swing, i needed to exclude some sources for that

Re: convert Ant script to Maven

2012-05-10 Thread Ron Wheeler
Did you look at the Ant plug-in? Ron On 10/05/2012 7:52 AM, chavanmukeshp wrote: Hello Friends, Can you please Suggest me how to convert below ant target into maven? Is there any plugin required for this conversion? Thanks in advance!! -- View this message in co

convert Ant script to Maven

2012-05-10 Thread chavanmukeshp
Hello Friends, Can you please Suggest me how to convert below ant target into maven? Is there any plugin required for this conversion? Thanks in advance!! -- View this message in context: http://maven.40175.n5.nabble.com/convert-Ant-script-to-Maven-tp5699981.html Se

Re: [ANN] plan-maven-plugin v1.1 released

2012-05-10 Thread Oliver B. Fischer
Hi Carlo, just had a look at your plugin. It is a great peace of software and will help me a lot! Bye, Oliver Am 09.05.2012 10:25, schrieb Carlo Sciolla: Hi all, I'm happy to announce the availability of the Plan Maven Plugin v1.1 on Central. The Plan plugin unrolls the maven execution pl

Re: convert Ant script to Maven

2012-05-10 Thread John Patrick
Alternatively you can use maven-antrun-plugin and just have that execute your ant script. http://maven.apache.org/plugins/maven-antrun-plugin/ On 10 May 2012 13:29, Antonio Petrelli wrote: > 2012/5/10 chavanmukeshp > >> Hello Friends, >> >> Can you please suggest me how to convert below ant targ

Re: convert Ant script to Maven

2012-05-10 Thread Antonio Petrelli
2012/5/10 chavanmukeshp > Hello Friends, > > Can you please suggest me how to convert below ant target into maven, > > > > > > > > > > > > No straight conversion, but I suppose you need the Exec Maven plugin: http://mojo.codehaus.

convert Ant script to Maven

2012-05-10 Thread chavanmukeshp
Hello Friends, Can you please suggest me how to convert below ant target into maven, Is there any plugin required for this conversion? Thanks in advance!! -- View this message in context: http://maven.40175.n5.nabble.com/convert-Ant-script-to-Maven-tp5700048.html Sent

Re: Best way to handle a universal pom?

2012-05-10 Thread Stephen Connolly
I think I have made the modifications that would make your life simpler... you probably still would need to change a parent pom, but that would be the only change... fix will be in ship-maven-plugin 1.0-alpha-2 On 10 May 2012 09:39, Stephen Connolly wrote: > Hmmm. I wonder if I were to modify the

Re: [ANN] plan-maven-plugin v1.1 released

2012-05-10 Thread Carlo Sciolla
2012/5/9 Ben Tatham > Perhaps you could port this feature to be a patch to the maven-help-plugin It's not the first time I get this suggestion, and it would indeed fit well in there. I'll reach out to the help plugin devs to see if they're interested into it. c. -- Carlo Sciolla --==(A)==--

Using maven to create portable projects (profile dependencies)

2012-05-10 Thread Julian Kalinowski
Hi, I'm currently trying port a Java desktop project to Android using maven. It has several modules which have different dependencies. As the Android Java Runtime doesn't have packages such as awt or swing, i needed to exclude some sources for that build and preprocess others, which kind of work

Re: Best way to handle a universal pom?

2012-05-10 Thread Stephen Connolly
Hmmm. I wonder if I were to modify the ship-maven-plugin to allow ship scripts to be pulled from the plugin's classpath rather than the filesystem would that solve your issue. On 9 May 2012 21:49, Raketemensch wrote: > Well, that's why I'm asking for a best practice, I'm trying to avoid > antishn