[ANN] Mojo's JAXB-2 Maven Plugin 1.6 released

2014-03-12 Thread Anders Hammar
Hi, The Mojo team is pleased to announce the release of Mojo's JAXB-2 Maven Plugin version 1.6. http://mojo.codehaus.org/jaxb2-maven-plugin/ Significant updates in this relase is the upgrade to JAXB 2.2 and support for JDK 8. Please also note that the plugin now requires Maven 2.2.1+ and Java

MDEPLOY-157 deployAtEnd option of maven-deploy-plugin broken after ant-assembly-maven-plugin execution

2014-03-12 Thread Julien CARSIQUE
Hi, I recently discovered an issue between the deployAtEnd option of maven-deploy-plugin and the execution of my plugin ant-assembly-maven-plugin (based on Aether). I first though it had nothing to do with maven-deploy-plugin and revealed a more general issue in my implementation, so I posted

Re: MDEPLOY-157 deployAtEnd option of maven-deploy-plugin broken after ant-assembly-maven-plugin execution

2014-03-12 Thread Tamás Cservenák
Not sure about your questions, but your finding might explain (or be related) ti what was found by Karl in this thread http://markmail.org/thread/65b7o4so77i7delc Thanks, ~t~ On Wed, Mar 12, 2014 at 10:45 AM, Julien CARSIQUE jcarsi...@nuxeo.comwrote: Hi, I recently discovered an issue

Re: MDEPLOY-157 deployAtEnd option of maven-deploy-plugin broken after ant-assembly-maven-plugin execution

2014-03-12 Thread Julien CARSIQUE
Indeed. Thanks for pointing at that thread. That would suggest the behavior comes from my plugin which defines it's own lifecycle (extensions true), but that the issue resides in the deployAtEnd implementation in maven-deploy-plugin. However, a lot of plugins do define their own

Broken links in surefire-report

2014-03-12 Thread Martin Egge
Hi, I'm using the Maven Surefire Report Plugin to view my jasmine test results (generated with Jasmine Maven Plugin) as HTML. The generated HTML-Pages look quite good in different browsers but the links on failed tests don't work at all. The XML containing the jasmine results has whitespace

Re: Custom maven plugin to count compilation warnings

2014-03-12 Thread Ron Wheeler
Would it not be a better use of time to get rid of the warnings? Your IDE should point out which code includes warnings and should warn you when you try to check-in code that has warnings. Ron On 11/03/2014 9:28 AM, yk wrote: Hi, I'm trying to write a plugin for Maven that would count the

Re: Custom maven plugin to count compilation warnings

2014-03-12 Thread yk
Yes, you're right here that IDE is a good place to check for warnings. However, we have a requirement for a Maven plugin which accepts a predefined number of warnings in code (Java/Scala, legacy code which we aren't going to rewrite anytime soon due to the lack of time) and checks that no more

Re: How to exclude jar from war overlay

2014-03-12 Thread David Hoffer
I have more information on this. The dependencies of war A as defined by its deployed pom are: dependencies dependency groupIdcom.issinc.cdf.server/groupId artifactIdcdf-rest-services/artifactId version${project.version}/version

ApacheCon 2014 = FlexCon 2014 ;-)

2014-03-12 Thread Christofer Dutz
Hi Guys, I just wanted to remind you that this year we are planing on doing some Major Flexing on the anual ApacheCon 2014 in Denver. There will be 3 Talks on Flex and even one day of Tutorials: Talks: - Tue 8th of April 16:45 : Building Enterprise Level Applications with Apache Flex

AW: ApacheCon 2014 = FlexCon 2014 ;-)

2014-03-12 Thread Christofer Dutz
Sorry for this ... wrong user-list :-( ... but hey ... It's Maven releated (Flexmojos) and Apache too so don't be mad at me ;-) Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Mittwoch, 12. März 2014 16:59 An: Maven Users List Betreff:

Help with converting existing ant build to maven is required

2014-03-12 Thread Maxim Solodovnik
Hello All, I'm new to maven and not very familiar with all its plugins. I need to move project [1] from ant+ivy to maven The problems are: 1) this project is build on top of [2] maven project (we need the exact structure and all libraries from this project) *[first problem: i don't know how to

Re: Broken links in surefire-report

2014-03-12 Thread Andreas Gudian
Hi Martin, Would you mind filing the bug in our Jira? And as you seem to have spotted the problem already, perhaps you'd have fun making a fork on GitHub and providing a pull request with a test and a fix? That would definetly increase the chances of fixing getting it fixed ;-). Cheers, Andreas

Re: list all unique dependencies of multi-module project

2014-03-12 Thread Curtis Rueden
Hi Max, You could create a module (in the same build or outside of it) with pom packaging and which depends on all the modules of your build. Then when you list its dependencies, you'll get them all (excluding non-transitive ones such as optional scope deps). Regards, Curtis On Mon, Mar 10,

Re: maven won't resolve from central log4j:log4j:1.2.8 through 1.2.15

2014-03-12 Thread Mauri, Richard
Hi, any word on how to fix the maven central repo so we can proceed with resolving (mvn dependency:tee) log4j:log4j:[1.2.8] ? It¹s curious why we can request with soft version 1.2.8 but not absolute [1.2.8] What has to happen to fix the maven central repos? On 3/10/14, 9:32 AM, Anders Hammar

Re: [ANN] Mojo's JAXB-2 Maven Plugin 1.6 released

2014-03-12 Thread Michael Osipov
Am 2014-03-12 10:43, schrieb Anders Hammar: Hi, The Mojo team is pleased to announce the release of Mojo's JAXB-2 Maven Plugin version 1.6. Hey Anders, is there actually a need for this plugin? The official Maven JAXB2 Plugin does quite a good job. (At least for my JAX-WS stuff). Michael

Re: maven won't resolve from central log4j:log4j:1.2.8 through 1.2.15

2014-03-12 Thread Baptiste Mathus
File an issue there: https://issues.sonatype.org/browse/mvncentral Cheers 2014-03-12 22:36 GMT+01:00 Mauri, Richard richard.ma...@sap.com: Hi, any word on how to fix the maven central repo so we can proceed with resolving (mvn dependency:tee) log4j:log4j:[1.2.8] ? It¹s curious why we can

Re: Help with converting existing ant build to maven is required

2014-03-12 Thread Baptiste Mathus
IIUC, your project openmeetings depends on red5 libraries. About your questions: 1) Not actually a Maven issue, but you seem to think the way to go it to build that dependency. As the project is ASLv2, you would far better make sure/ask it be uploaded to Maven Central. Then just just the

Re: list all unique dependencies of multi-module project

2014-03-12 Thread Max Calderoni
Hi Curtis, thanks for answering. Yes, that was the first thing i tried, like you said, i had done: cd topPomDir mvn dependency:list but that does not print out the same nice report that i see in the Dependency Management section of the generated site, which is what i want. So, i did: mvn

Maven 3.1.1 dependency downloading issue

2014-03-12 Thread Mao, James(Maode)
Hi, I found in the build log, we are downloading the artifacts parallel, so even the artifact is downloaded, Maven 3.1.1 will still try to download the same from other repository. Can someone tell me how to disable this feature? What's the reason we had this change since Maven 3.0.5 And also

Re: Maven 3.1.1 dependency downloading issues

2014-03-12 Thread James Mao
Thanks Wayne, i am using mirror in my system mirrors mirror idcentral/id mirrorOfcentral/mirrorOf urlhttp://mycentral/content/repositories/central/url /mirror /mirrors I am wondering

Re: Maven 3.1.1 dependency downloading issues

2014-03-12 Thread Wayne Fay
mirrorOfcentral/mirrorOf ... I am wondering why some artifacts still downloading from other repo, here ... How can i stop downloading from other repository? The mirrorOf value should be an asterisk/star, as I stated before: mirrorOf*/mirrorOf which will capture all

[Failsafe] How to properly conduct integration tests on executable jar files

2014-03-12 Thread Alex Karasulu
Hello, I've got a module that builds an executable jar file using the Maven Assembly Plugin. I'm trying to setup an integration test (in the same module) that runs this executable jar file as a separate process and interacts with it. To fire up the executable jar file, my integration test

Re: list all unique dependencies of multi-module project

2014-03-12 Thread Mirko Friedenhagen
Hello Max, what about switching this to a jar project without sources (maybe a readme txt as resource), which is not deployed or installed? Regards Mirko -- Sent from my mobile On Mar 13, 2014 12:24 AM, Max Calderoni max.calder...@gmail.com wrote: Hi Curtis, thanks for answering. Yes, that

Re: Maven 3.1.1 dependency downloading issues

2014-03-12 Thread James Mao
Hi Wayne, Thanks for the quick reply. But not everything is in urlhttp://mycentral/content/repositories/central/url I also have http://mycentral/content/repositories/releases, http://mycentral/content/repositories/plugins, http://mycentral/content/repositories/snapshots. If