Re: ANN: h2-maven-plugin 1.0

2011-11-30 Thread Mirko Friedenhagen
Nice, well documented plugin. Regards Mirko -- Sent from my phone http://illegalstateexception.blogspot.com http://github.com/mfriedenhagen/ https://bitbucket.org/mfriedenhagen/ On Nov 29, 2011 11:14 PM, Laird Nelson ljnel...@gmail.com wrote: My apologies if this is not the appropriate kind of

Re: Sort dependencies topologically

2011-11-30 Thread Jérémy
Here it is, it sorts only the artifactId, I retrieved the versions through other means. import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import org.apache.maven.plugin.AbstractMojo; import

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Andrew Eisenberg
Thanks, Jeff and Stephen for your answers. I know about the build-helper-maven-plugin, but this adds about 20 lines of configuration to the pom and I was hoping to avoid that. Also, forcing users to specify a parent pom is not feasible since users will likely have their own parent poms to use.

Re: Vote started for Apache Maven 3.0.4

2011-11-30 Thread Mirko Friedenhagen
Hello, am I right: this version is withdrawn? I saw something about md5-hashes not being calculated, however with snapshots this seems to work. Regards Mirko -- http://illegalstateexception.blogspot.com/ https://github.com/mfriedenhagen/ https://bitbucket.org/mfriedenhagen/ On Fri, Nov 25,

Re: Vote started for Apache Maven 3.0.4

2011-11-30 Thread Mirko Friedenhagen
BTW: What is the reason, why the vote is started in the surefire-dev list? Regards Mirko On Wed, Nov 30, 2011 at 20:32, Mirko Friedenhagen mfriedenha...@gmail.com wrote: Hello, am I right: this version is withdrawn? I saw something about md5-hashes not being calculated, however with

repositories acting up?

2011-11-30 Thread Maven User
Hi all - Are people having any issues connecting to repo1 via their repo managers today? I'm unable to connect: jvm 1| org.sonatype.nexus.proxy.RemoteStorageException: Transport error while executing GET method [repositoryId=central, requestPath=/.index/ nexus-maven-repository-index.pr

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Jeff MAURY
You can develop a Mojo that will do the trick but you will have to configure it in you pom (at least define it so that it will be invoked) so I don't see the added value compared to the build-helper-plugin Regards Jeff MAURY On Wed, Nov 30, 2011 at 7:53 PM, Andrew Eisenberg

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Andrew Eisenberg
On Wed, Nov 30, 2011 at 1:31 PM, Jeff MAURY jeffma...@jeffmaury.com wrote: You can develop a Mojo that will do the trick but you will have to configure it in you pom (at least define it so that it will be invoked) so I don't see the added value compared to the build-helper-plugin Right. Well,

Re: Vote started for Apache Maven 3.0.4

2011-11-30 Thread Olivier Lamy
Hello, 2011/11/30 Mirko Friedenhagen mfriedenha...@gmail.com: BTW: What is the reason, why the vote is started in the surefire-dev list? See documented release process: http://maven.apache.org/developers/release/maven-project-release-procedure.html Usually vote are dev@ (so here maven-dev@)

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Jeff MAURY
No, you can have a mojo automatically invoked as soon as it is declared in a pom. You must bind your mojo to a specific phase. Regards Jeff MAURY On Wed, Nov 30, 2011 at 10:48 PM, Andrew Eisenberg andrew.eisenb...@gmail.com wrote: On Wed, Nov 30, 2011 at 1:31 PM, Jeff MAURY

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Andrew Eisenberg
Sorry for asking so many questions, but I am now confused. When you say You must bind your mojo to a specific phase, where does this binding happen? Inside the pom associated with the mojo or inside the plugin consumer's pom? Earlier, I think you implied that this had to happen in the

Generate report PDF with Maven PDF Plugin

2011-11-30 Thread 4ndrew
Hi, I'd like to generate a PDF file from the results of Maven Surefire Plugin. But when I'm trying to run mvn pdf:pdf its says: *[INFO] Ignoring api call removed in maven 3, no reports are generated!* Any idea would be appreciated! Thx! -- View this message in context:

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Stephen Connolly
On 30 November 2011 22:45, Andrew Eisenberg andrew.eisenb...@gmail.comwrote: Sorry for asking so many questions, but I am now confused. When you say You must bind your mojo to a specific phase, where does this binding happen? Inside the pom associated with the mojo or inside the plugin

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Jeff MAURY
This is done through a Javadoc annotation in your Mojo source file. Regards Jeff MAURY On Wed, Nov 30, 2011 at 11:45 PM, Andrew Eisenberg andrew.eisenb...@gmail.com wrote: Sorry for asking so many questions, but I am now confused. When you say You must bind your mojo to a specific phase,

Re: Generate report PDF with Maven PDF Plugin

2011-11-30 Thread Manfred Moser
On 11-11-30 07:43 AM, 4ndrew wrote: Hi, I'd like to generate a PDF file from the results of Maven Surefire Plugin. But when I'm trying to run mvn pdf:pdf its says: *[INFO] Ignoring api call removed in maven 3, no reports are generated!* Any idea would be appreciated! Thx! the pdf plugin is

Re: writing a maven plugin that transparently adds a new source folder

2011-11-30 Thread Stephen Connolly
That just defined the default phase that the goal will bind to if you don't specify a phase... but you need to bind a goal to a phase in the consumer's pom or the packaging lifecycle On 30 November 2011 23:00, Jeff MAURY jeffma...@jeffmaury.com wrote: This is done through a Javadoc annotation

Re: Putting file in META-INF in EAR

2011-11-30 Thread sunnydays
I have same issuedid u get any solution. Please let me know. Thanks. -- View this message in context: http://maven.40175.n5.nabble.com/Putting-file-in-META-INF-in-EAR-tp112110p5036940.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: Generate report PDF with Maven PDF Plugin

2011-11-30 Thread Lukas Theussl
Manfred Moser wrote: On 11-11-30 07:43 AM, 4ndrew wrote: Hi, I'd like to generate a PDF file from the results of Maven Surefire Plugin. But when I'm trying to run mvn pdf:pdf its says: *[INFO] Ignoring api call removed in maven 3, no reports are generated!* Any idea would be appreciated!

Re: Generate report PDF with Maven PDF Plugin

2011-11-30 Thread Lukas Theussl
On Thu, Dec 1, 2011 at 7:58 AM, Lukas Theussl ltheu...@apache.org wrote: Manfred Moser wrote: On 11-11-30 07:43 AM, 4ndrew wrote: Hi, I'd like to generate a PDF file from the results of Maven Surefire Plugin. But when I'm trying to run mvn pdf:pdf its says: *[INFO] Ignoring api call

Re: repositories acting up?

2011-11-30 Thread Anders Hammar
Please note that traffic for repo1 from Europe is directed to the UK instance, so the result could be different if you're in the US (which will use the US instance). /Anders On Thu, Dec 1, 2011 at 08:07, Anders Hammar and...@hammar.net wrote: Seems to work just fine from Sweden. Remote index

Re: repositories acting up?

2011-11-30 Thread Anders Hammar
Seems to work just fine from Sweden. Remote index was downloaded 05.00 CET this morning. /Anders On Wed, Nov 30, 2011 at 22:29, Maven User maven.2.u...@gmail.com wrote: Hi all - Are people having any issues connecting to repo1 via their repo managers today? I'm unable to connect: jvm 1  

Re: Generate report PDF with Maven PDF Plugin

2011-11-30 Thread Manfred Moser
On 11-11-30 10:58 PM, Lukas Theussl wrote: Manfred Moser wrote: On 11-11-30 07:43 AM, 4ndrew wrote: Hi, I'd like to generate a PDF file from the results of Maven Surefire Plugin. But when I'm trying to run mvn pdf:pdf its says: *[INFO] Ignoring api call removed in maven 3, no reports are