RE: Code coverage report for multi module maven project reports zero in some modules

2012-07-01 Thread Tim Wu T
Hi, I met the same problem with you, now, I use jenkins cobuertural plugin, which will help me generate a whole report, not only include some packages :) Br, Tim -Original Message- From: kfmoh...@uci.edu [mailto:kfmoh...@uci.edu] Sent: Sunday, July 01, 2012 9:51 AM To: Maven Users

maven compiler plugin cannot find class in dependency

2012-07-01 Thread Shaddow89
Hi guys, i am encountering an awkward problem. I have a huge shaded uberjar containing several 100 api jars. While developing i use this uberjar as provided dependencies (since all of them are provided later on the server). Eclipse can resolve the required classes correctly. Once i compile the

Re: Code coverage report for multi module maven project reports zero in some modules

2012-07-01 Thread Aliaksei Lahachou
I also use jenkins cobertura plugin and it does nothing special. It is invoked after the build and only generates aggregated report from single coverage.xml files. On Sun, Jul 1, 2012 at 9:00 AM, Tim Wu T tim.t...@ericsson.com wrote: Hi, I met the same problem with you, now, I use jenkins

Wrong version of artifact is gotten by dependency:tree

2012-07-01 Thread Rice Yeh
Hi, I have a project who has a dependency on hibernate-entitiymanager 4.1.4.Final, which has a dependency on hibernate-core 4.1.4.Final also. However, when using eclipse:eclipse or denpendency:tree to see the transitional gotten hibernate-core is 3.6.10.Final as shown in the following. What is

Re: Wrong version of artifact is gotten by dependency:tree

2012-07-01 Thread Rice Yeh
Hi, I find that it is because the parent pom.xml has a dependency on 3.6.10.Final on dependencyManagement. Rice On Sun, Jul 1, 2012 at 8:25 PM, Rice Yeh rice...@gmail.com wrote: Hi, I have a project who has a dependency on hibernate-entitiymanager 4.1.4.Final, which has a dependency on

[ANN] Maven FindBugs Plugin version 2.5.1 Released

2012-07-01 Thread LeClaire Garvin
Hi, The Mojo team is pleased to announce the release of the Maven FindBugs Plugin version 2.5.1. FindBugs uses static analysis to inspect Java bytecode for occurrences of bug patterns. You can see more about the plugin at: http://mojo.codehaus.org/findbugs-maven-plugin/ To get this

[ANN] Siteskinner Maven Plugin_1.0-beta-2 Released

2012-07-01 Thread Robert Scholte
Hi, The Mojo team is pleased to announce the release of the Siteskinner Maven Plugin version 1.0-beta-2. The siteskinner-maven-plugin can apply a new skin on published sites generated by Maven without changing its content. http://mojo.codehaus.org/siteskinner-maven-plugin/ Release Notes

Re: Code coverage report for multi module maven project reports zero in some modules

2012-07-01 Thread Thomas Sundberg
On 1 July 2012 03:51, kfmoh...@uci.edu wrote: Yes, I have moduleA, moduleB, moduleC, moduleD, moduleE and module F. I run JUnit tests from module F. This is not the way the Cobertura plugin expects you to do stuff. I have solved this scenario with a mix if Maven and And. If you are interested,