Re: Maven javadoc selective submodules

2014-08-19 Thread Robert Scholte
When talking about a CI solution, I assumed that the javadoc generation is not required as part of the build-lifecycle, but could be executed as a separate step. If that is a requirement, then a separate pom is not the preferred solution, it'll make things much more complicated and you might

Re: Ignoring a specific plugin failure

2014-08-19 Thread Logicon211
Thanks! I thought as much. I think it is an open source plugin, so I might be able to modify it's failing conditions at least. -- View this message in context: http://maven.40175.n5.nabble.com/Ignoring-a-specific-plugin-failure-tp5802487p5802595.html Sent from the Maven - Users mailing list

Re: Remove old snapshots under local repository

2014-08-19 Thread Ron Wheeler
On 19/08/2014 1:49 AM, Barrie Treloar wrote: What's wrong with just blowing away ~/.m2/repository ? If you have a local Maven Repository Manager it doesn't take very long to reseed it. (At least less time in aggregate than thinking of ways to prune snapshot files in the repository correctly...)

Maven Site Not Generating JavaDoc

2014-08-19 Thread SEAN MCELROY
Hello, I am using maven 3.1.1 and I can get the maven-site-plugin to generate any java doc. The javadoc plugin works fine on it's own. I've tried all sorts of different configurations but haven't managed to generate and javadoc.  Here is my current configuration. All help appreciated.        

Re: Doxia Eclipse Editor Plugin problem with snippet macro

2014-08-19 Thread Robert Munteanu
On Sun, Aug 17, 2014 at 8:47 PM, Hervé BOUTEMY herve.bout...@free.fr wrote: , at least for the eclipse+java+maven environment we're using. but you're right, I didn't find a good one as Eclipse plugin either and even not as native application on Linux Mylyn Docs should have a good markdown

Re: Doxia Eclipse Editor Plugin problem with snippet macro

2014-08-19 Thread Hervé BOUTEMY
Le mardi 19 août 2014 15:28:40 Robert Munteanu a écrit : On Sun, Aug 17, 2014 at 8:47 PM, Hervé BOUTEMY herve.bout...@free.fr wrote: , at least for the eclipse+java+maven environment we're using. but you're right, I didn't find a good one as Eclipse plugin either and even not as

Out-of-memory of HDFS sink

2014-08-19 Thread 李响
I encountered this out of mem issue, does anybody encounter this or a similar one before ? how can I debug this kind of problem ? Thanks in advance~~~ From the flume.log: 30 Jul 2014 23:10:06,984 ERROR [SinkRunner-PollingRunner-DefaultSinkProcessor]

Re: Maven Site Not Generating JavaDoc

2014-08-19 Thread Hervé BOUTEMY
this is not reporting but reportPlugins but in fact, you should not use this but use standard pom's reporting section instead of m-site-p configuration: see http://maven.apache.org/plugins/maven-site-plugin/maven-3.html#Configuration_formats Regards, Hervé Le mardi 19 août 2014 14:42:37 SEAN

Re: Doxia Eclipse Editor Plugin problem with snippet macro

2014-08-19 Thread Pablo León
I have pasted the markdown example from http://www.unexpected-vortices.com/sw/rippledoc/quick-markdown-example.html into an empty .md file in eclipse luna, and I have observed that some markup is correctly shown in the preview page, while other isn't. I think there are several flavours for

Re: creating custom Maven resource filter

2014-08-19 Thread Jose Martinez
Hello, I've made some progress on this and have a problem with Maven finding my custom plugin's class. = [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources) on project roc: java.util.NoSuchElementException [ERROR] role:

Re: creating custom Maven resource filter

2014-08-19 Thread Jose Martinez
Problem resolved.  The documentation in this link has the dependency tags in the wrong place...  http://maven.apache.org/plugins/maven-resources-plugin/examples/custom-resource-filters.html#Dependency_declaration   When I moved the plugin's dependencies tag outside of the configuration tags then

Re: creating custom Maven resource filter

2014-08-19 Thread Robert Scholte
Done, see MRESOURCES-182[1] Will be updated with the next release. thanks, Robert [1] https://jira.codehaus.org/browse/MRESOURCES-182 Op Tue, 19 Aug 2014 21:43:44 +0200 schreef Jose Martinez jma...@yahoo.com.invalid: Problem resolved. The documentation in this link has the dependency

Re: Remove old snapshots under local repository

2014-08-19 Thread Dan Tran
After all consideration. I use Ron's advice and create a internal plugin to clean it up. -D On Tue, Aug 19, 2014 at 6:06 AM, Ron Wheeler rwhee...@artifact-software.com wrote: On 19/08/2014 1:49 AM, Barrie Treloar wrote: What's wrong with just blowing away ~/.m2/repository ? If you have

Re: Remove old snapshots under local repository

2014-08-19 Thread Mark Derricutt
So not using the dependency plugin like I suggested? On 20 Aug 2014, at 10:14, Dan Tran wrote: After all consideration. I use Ron's advice and create a internal plugin to clean it up. - To unsubscribe, e-mail:

Re: Remove old snapshots under local repository

2014-08-19 Thread Dan Tran
the problem here is I have to enter artifactId, am I missing any thing? specially for a developer who is very clueless about Maven -D On Tue, Aug 19, 2014 at 7:09 PM, Mark Derricutt m...@talios.com wrote: So not using the dependency plugin like I suggested? On 20 Aug 2014, at 10:14, Dan

Re: hi, I just want to get help about maven archetype,please help me

2014-08-19 Thread TOM
yeah, it works! __artifactId__ and __rootArtifactId__ all works well but this way bring a new little problem: my archetype is come from a demo project using archetype:create-from-project,now i get a archetype and change some directory's name to __artifactId__,later i want to make some tuning

Re: Remove old snapshots under local repository

2014-08-19 Thread Mark Derricutt
Nope, it's takes the dependencies from your project pom.xml: mvn dependency:purge-local-repository -DresolutionFuzziness=artifactId Mark On 20 Aug 2014, at 14:11, Dan Tran wrote: the problem here is I have to enter artifactId, am I missing any thing? specially for a developer who is very

Re: Remove old snapshots under local repository

2014-08-19 Thread Dan Tran
ah, that works with a project, in my case, i prefer not to have a project On Tue, Aug 19, 2014 at 8:07 PM, Mark Derricutt m...@talios.com wrote: Nope, it's takes the dependencies from your project pom.xml: mvn dependency:purge-local-repository -DresolutionFuzziness=artifactId Mark On