Re: excluding web content from an assembly of a war project

2013-01-28 Thread Baptiste MATHUS
Well, if you already use the assembly-plugin, that would have been great to just say it :). And then, showing your assembly files might help to help... Even better, push some project showing your issue on Github for example. Cheers 2013/1/27 Stefano Fornari stefano.forn...@gmail.com Hi

Re: maven jax-ws and jdk7. help please

2013-01-28 Thread Anders Hammar
Most likely due to different version of some framework (jaxb?) being used. /Anders On Mon, Jan 28, 2013 at 8:58 AM, laudio.info laudio.i...@gmail.com wrote: Thanks I have seen that, using the same java code and the same configuration, the problem appears if i use the jdk7. Using the jdk

Re: Surefire 2.13: minor test failure summary problem

2013-01-28 Thread Kristian Rosenvold
You should probably read this, which is new for 2.13: http://maven.apache.org/surefire/maven-surefire-plugin/newerrorsummary.html I think there may be a bug in the new error summary when it fails in the @Before method; I believe I've seen that in the corner of my eye. I've been meaning to test

Re: maven jax-ws and jdk7. help please

2013-01-28 Thread Jörg Schaible
laudio.info wrote: Thanks I have seen that, using the same java code and the same configuration, the problem appears if i use the jdk7. Using the jdk there is not problem The jaxws plugin does not respect the compiler settings for source/target. On top of it, the exception has additional

Re: excluding web content from an assembly of a war project

2013-01-28 Thread Stefano Fornari
Ah, ok, sorry for the lack of information, I thought it was a kind of dumb question (meaning done by a beginner) :). Thanks a lot for your help and effort, here some links: The pom: https://github.com/stefanofornari/beanshellweb/blob/master/webapp/pom.xml The assembly file:

Re: A dependency tree I do not understand

2013-01-28 Thread Olivier Lamy
same tree with mvn 2.2.1 ? 2013/1/26 Benson Margulies bimargul...@gmail.com: The project of the moment is: com.basistech:rlp:jar:7.8.333 Notice the older version of itself retained in the tree? I expected it to disappear. [INFO] [INFO] --- maven-dependency-plugin:2.5.1:tree (default-cli) @

Re: A dependency tree I do not understand

2013-01-28 Thread Ron Wheeler
It looks like a circulular dependency. How does rlp-save-results get built with a later version of rlp? It looks like you need an exclude? Ron On 28/01/2013 9:58 AM, Olivier Lamy wrote: same tree with mvn 2.2.1 ? 2013/1/26 Benson Margulies bimargul...@gmail.com: The project of the moment

Re: A dependency tree I do not understand

2013-01-28 Thread Benson Margulies
On Mon, Jan 28, 2013 at 10:25 AM, Ron Wheeler rwhee...@artifact-software.com wrote: It looks like a circulular dependency. Yes indeed, circular. Oddly, the build works, no complaints. If it has complained, I would have thought some more about whether or how to break the circle. How does

AW: maven jax-ws and jdk7. help please

2013-01-28 Thread Stadelmann Josef
I fully support that! I had a nightmare with Axis2-1.6.2 and JDK1.6.0_30 when it comes to use jax-ws and jaxb with ALLOWED ANNOTATIONS; Axis-1.6.2 has a jax-ws interface which knows about 4 args to some annotations, so the compiler had absolute no problem. But then JDK 1.6.0_30 RT.jar has only

Re: Perhaps strange backtrace in surefire

2013-01-28 Thread Benson Margulies
Done. Hoping for advice on how to dig out the cause, as I lack a postable test case. On Mon, Jan 28, 2013 at 4:37 AM, Kristian Rosenvold kristian.rosenv...@gmail.com wrote: Yup, file a jira for this one. Kristian 2013/1/26 Benson Margulies bimargul...@gmail.com Here it is in 2.13:

jaxb2-maven-plugin - always running out of permgen

2013-01-28 Thread Maven User
Hi all - I'm not sure where to start with this as I wasn't the one to add the plugin nor do I know the options that abound for xml-java generation. No matter what I do, when this plugin is run in a multi-module (aggregator pom) type build, it hits these permgen errors. Once I single it out

Re: jaxb2-maven-plugin - always running out of permgen

2013-01-28 Thread Wayne Fay
No matter what I do, when this plugin is run in a multi-module (aggregator pom) type build, it hits these permgen errors. Once I single it out though, it works just fine. Is there maybe a fork option for this plugin? I don't use it either. What groupId does the plugin use? That should tell

Re: jaxb2-maven-plugin - always running out of permgen

2013-01-28 Thread Maven User
Actually, it's not limited to this plugin. I can see that the bundle plugin for felix is also giving an issue. I feel like maven 3.0.4's GC is borked once you get to a certain size. I've allocated 2gb max and 1.5 gb permgen (and my projects are NOT that big). Still OOM - On Mon, Jan 28, 2013

Re: jaxb2-maven-plugin - always running out of permgen

2013-01-28 Thread Maven User
FWIW - I'm also on ubuntu 64 with a 64 bit jdk... java -version java version 1.7.0_04 Java(TM) SE Runtime Environment (build 1.7.0_04-b20) Java HotSpot(TM) 64-Bit Server VM (build 23.0-b21, mixed mode) On Mon, Jan 28, 2013 at 11:18 PM, Maven User maven.2.u...@gmail.com wrote: Actually, it's

Re: jaxb2-maven-plugin - always running out of permgen

2013-01-28 Thread Barrie Treloar
You haven't actually supplied your MAVEN_OPTS value. I'm using: -Xms128m -Xmx512m -XX:MaxPermSize=512M -Djava.net.preferIPv4Stack=true I'm not using jaxb2, but other plugins like Tycho and org.apache.felix:maven-bundle-plugin without this issue.