Re: Unpacking jars into target/classes

2013-03-20 Thread Baptiste MATHUS
+1 on everything, Manfred. And for the record, in case anyone is wondering if that mailing list if often like that, please read some other threads... I never saw that kind of thing here. Le 19 mars 2013 22:54, Manfred Moser manf...@mosabuam.com a écrit : Am 19.03.2013 14:02, schrieb Stephen

Re: Finding Maven properties?

2013-03-20 Thread Hervé BOUTEMY
a reference list does not exist per-se, because the structure is extensible: it's not really properties but more pseudo-properties with multiple sources one reference source of information is the structure documentation: http://maven.apache.org/ref/3-LATEST/maven-model-builder/ Regards, Hervé

Re: Copy-maven-plugin and settings.xml

2013-03-20 Thread kishorej
Hi, Instead of pom.xml i need to use it settings.xml and how to call that or use it in pom.xml Thanks, kishore.J -- View this message in context: http://maven.40175.n5.nabble.com/Copy-maven-plugin-and-settings-xml-tp5751230p5751317.html Sent from the Maven - Users mailing list archive at

Re: Copy-maven-plugin and settings.xml

2013-03-20 Thread Kevin Krumwiede
Put something like this in your settings.xml: profiles profile iddefault/id activation activeByDefaulttrue/activeByDefault /activation properties target-urlscp://XX:YY@IP:/app_home/backup/target-url /properties /profile

Re: com.sun.tools.javac.*

2013-03-20 Thread Russell Gold
Hi Martin, I don't understand your question. I am not claiming any documentation says anything of the kind. Regards, Russ On Mar 17, 2013, at 6:57 PM, Martin Gainty mgaint...@gmail.com wrote: Hi Russ

Test Javadoc generation by default?

2013-03-20 Thread Russell Gold
Hi, I started using the javadoc reporting plugin and noticed that by default it generates test javadocs as well as regular ones. I know that I can configure it only to produce the regular ones, but I was wondering if somebody could explain why the defaults are as they are. Do most projects

Re: Unpacking jars into target/classes

2013-03-20 Thread Brian Fox
I haven't had time lately to follow a lot of the user list threads, but this one got my attention so I read the whole thing last night. Without having any background on Joachim's previous threads, and judging everything only based on this one, I was kind of surprised...not in a good way. If this

Re: Test Javadoc generation by default?

2013-03-20 Thread Curtis Rueden
Hi Russ, I started using the javadoc reporting plugin and noticed that by default it generates test javadocs as well as regular ones. Do you mean maven-javadoc-plugin? If so, that is strange... I regularly generate full javadoc with v2.8.1 for several different multi-module projects and it

Re: Test Javadoc generation by default?

2013-03-20 Thread Russell Gold
Hi Curtis, I've posted a small project with this behavior at http://www.gold-family.us/russ/lines/sample8.zip Thanks, Russ On Mar 20, 2013, at 11:54 AM, Curtis Rueden ctrue...@wisc.edu wrote: Hi Russ, I started using the javadoc reporting plugin and noticed that by default it generates

RE: com.sun.tools.javac.*

2013-03-20 Thread Martin Gainty
then your ok implementing the new compiler org.apache.maven:maven-compiler-plugin:2.0.X (instead of com.sun.tools.javac.* ) thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist

Re: com.sun.tools.javac.*

2013-03-20 Thread Russell Gold
It doesn't do what I need - which is to be able to have a compile program (not Maven itself) invoke the java compiler. On Mar 20, 2013, at 12:36 PM, Martin Gainty mgai...@hotmail.com wrote: then your ok implementing the new compiler org.apache.maven:maven-compiler-plugin:2.0.X (instead of

Re: com.sun.tools.javac.*

2013-03-20 Thread Thomas Broyer
Use javax.tools.JavaCompiler then? http://docs.oracle.com/javase/7/docs/api/javax/tools/ToolProvider.html#getSystemJavaCompiler() Since JDK 1.6 (but as with com.sun.tools.javac, you need to run your program with a JDK, a JRE won't be enough) On Wed, Mar 20, 2013 at 6:03 PM, Russell Gold

Re: Test Javadoc generation by default?

2013-03-20 Thread Curtis Rueden
Hi Russ, Thanks. After running mvn site with your project, here's what I see: $ find target -name '[A-Z]*.html' target/site/apidocs/com/meterware/codebreaker/class-use/Codebreaker.html target/site/apidocs/com/meterware/codebreaker/Codebreaker.html

Re: com.sun.tools.javac.*

2013-03-20 Thread Russell Gold
Ah, excellent. I was not aware of that API, and at least some of the uses in question can be JDK 1.6-dependent On Mar 20, 2013, at 1:07 PM, Thomas Broyer t.bro...@gmail.com wrote: Use javax.tools.JavaCompiler then?

Re: Unpacking jars into target/classes

2013-03-20 Thread Joachim Durchholz
Hi Brian, Let me express a big Thank You; this was a much-needed breath of fresh air, and I 100% agree with every single sentence in your posting. This isn't going to change much about the technical issues, but you did a whole lot to restore my respect for the community that's building and

targetPath/ for resource behaves differently Windows v. Linux

2013-03-20 Thread agfung
Running mvn compile on the attached build (basically the POM below and a /src/main/resources/placeholder.txt/), I get different behaviour on Windows v Linux (tried combinations of Maven 3.0.4/3.0.5, Win7 x64/Ubuntu12.10 x64, openjdk 1.6/1.7). On Windows, it compiles fine. On Linux, it tries to

Hiding markup from Velocity during site generation with md.vm source files

2013-03-20 Thread Kevin Minder
Hi Everyone, I'm using Markdown formatting to create my site docs. I'm also using Velocity templating to pass some version information from the pom to the md.vm files. Lets assume that I have a md.vm file like this: Heading -- ### Sub-heading Big long hairy code block with some

Re: Hiding markup from Velocity during site generation with md.vm source files

2013-03-20 Thread Kevin Minder
Point of clarification. Velocity is eating the ### Sub-heading line because from its perspective this is a comment and doesn't belong in the rendered output. On 3/20/13 3:04 PM, Kevin Minder wrote: Hi Everyone, I'm using Markdown formatting to create my site docs. I'm also using Velocity

Oops

2013-03-20 Thread Joachim Durchholz
That shouldn't have gone to the list. Apologies. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

mvn version:dependency-updates-report failed

2013-03-20 Thread Li, Jing
Hi there, We have maven projects, it works when using mvn version:display-dependency-updates, but failed when we try to do mvn version:dependency-updates-report. It will be highly appreciated if some one give us any suggestions on it. Thanks in advance. Jing [INFO] ---

Re: Hmmmm

2013-03-20 Thread Ansgar Konermann
Am 20.03.2013 20:56, schrieb Stephen Connolly: Freud believed that slips of the tongue provided an insight into the unconscious mind and that there were no accidents, every behavior (including slips of the tongue) was significant (i.e. all behavior is determined). Source:

Re: Hmmmm

2013-03-20 Thread Stephen Connolly
Lots of mails end up on the maven mailing list... Could be upwards of 3 such mails in te last 24hours... Perhaps they arrive here by accident... Perhaps (if you agree with Freud) there are no accidents and the mails arrive here on purpose... On Wednesday, 20 March 2013, Ansgar Konermann wrote:

Re: Unpacking jars into target/classes

2013-03-20 Thread Laird Nelson
On Sat, Mar 2, 2013 at 12:32 PM, Joachim Durchholz j...@durchholz.org wrote: I have two jars from an external source and need to merge their contents into the target/classes tree until the process-classes phase. I'm not sure what plugin(s) can be used to achieve this effect. Offhand I would