[maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Stadelmann Josef
Dear all, Since a few days I have on my OpenVMS system this failure when I build Axis2-1.6.1 using $ mvn -P java150 -Dtest=false install I suspect an XML Reader which is not behaving well on OpenVMS (coming down recently) OR From where shall this remote manifest come? And why does the reader

[maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Wayne Fay
I suspect an XML Reader which is not behaving well on OpenVMS (coming down recently) This isn't the issue. From where shall this remote manifest come? And why does the reader say they a re empty? They might not exist or they might actually be empty. Any chance to test this

How to write a working Custom Lifecycle?

2011-11-16 Thread Oliver Fischer
Hi all, I try to define my own custom lifecycle, which I would like to use in some of my projects. As far as I understood, I should be enough to create a module with packaging type jar, to create a components.xml and to place this file below META-INF/plexus. To use this packaging type it

AW: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Stadelmann Josef
Wayne thank you to get me to the right direction. please take note it Is not my own source I am attempting to build. It is the official released axis2-1.6.1 src reelase which I toke down by $ jsvn co /asf/axis/axis2/java/core/tags/v1.6.1 v1.6.1 AND hence this pom.xml there is the master of

[maven-2.2.1] how to turn-off Visiting non-standard Signature object

2011-11-16 Thread Stadelmann Josef
using maven to build my small project. [site:site] Parent project loaded from repository: org.apache:apache:pom:10 Downloading: http://mavenrepo.ch.winterthur.com:12697/nexus/content/repositories/cent ral/org/apache/apache/10/apache-10-site_en.xml Unable to find resource

Re: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Wayne Fay
please take note it Is not my own source I am attempting to build. It is the official released axis2-1.6.1 src reelase which I toke down by $ jsvn co /asf/axis/axis2/java/core/tags/v1.6.1  v1.6.1 As stated previously on emails of this topic, the Maven Users list cannot be expected to be

AW: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Stadelmann Josef
Sorry Wayne, I forgot to write that I have re-posted / commented this to the axis2-users list. But if error messages would be a bit more helpful i.e. telling the expected path and filename either local or remote, many problem would even NOT hit your desk. Thank you anyway Josef

Re: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Wayne Fay
You should find the axis2-resource-bundle artifact in your local repo cache, open it up (unzip it) and look for a file named META-INF/maven/remote-resource.xml inside. If that file does not exist or is empty, that would seem to be your problem. In all likelihood, there is something in the

Re: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Wayne Fay
I forgot to write that I have re-posted / commented this to the axis2-users list. I'm not sure the Axis2 Users list is the right place for this discussion either -- realistically I see it as an Axis2 Developers discussion. They may only have a couple active devs who handle their build process

Re: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Jörg Schaible
Stadelmann Josef wrote: Dear all, Since a few days I have on my OpenVMS system this failure when I build Axis2-1.6.1 using $ mvn -P java150 -Dtest=false install I suspect an XML Reader which is not behaving well on OpenVMS (coming down recently) OR From where shall this remote

Re: [maven-2.2.1] on building axis2 ./tags/v1.6.1/modules/kernel fails

2011-11-16 Thread Wayne Fay
In all likelihood, there is something in the Java coding of MRRP which is incompatible with your OpenVMS system (not really a surprise). You should pull down the source code of MRRP and analyze it. If you find and fix a defect, please donate your patch back to the Maven JIRA so it can be

Cannot find layout implementation error using mvn 3 artifacts with mvn 2

2011-11-16 Thread Warwick
Hi, I'm very new to maven. I'm getting this error message trying to use an eclipse plugin artifact built with mvn 3 in an mvn 2 build. The artifacts are deployed to the maven repo (archiva) but it seems the format they were deployed in isn't recognized by mvn 2, or the maybe its the artifacts at

Re: Cannot find layout implementation error using mvn 3 artifacts with mvn 2

2011-11-16 Thread Warwick
I'll should have added this part of the error message for more detail: build 15-Nov-2011 18:21:16 Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Component descriptor cannot be found in the component repository:

Re: Cannot find layout implementation error using mvn 3 artifacts with mvn 2

2011-11-16 Thread Benson Margulies
I'm fairly certain that this has nothing to do with m2 versus m3. The 'p2' layout is a feature of Tycho, not the core of Maven. Tycho might require M3, or there may be some other issue. I suggest that you consult the tycho users list. On Wed, Nov 16, 2011 at 8:23 PM, Warwick

Building multi-module project with cross-references

2011-11-16 Thread zebahmad
Hi, I am currently migrating my projects from my company's in-house build system based on ant, to maven. We have a concept of deliverable, where a deliverable may be a combination of projects. Two or more projects are basically merged, to create a deliverable. The projects may be part of more

Re: Building multi-module project with cross-references

2011-11-16 Thread Barrie Treloar
On Thu, Nov 17, 2011 at 2:23 PM, zebahmad coolz...@gmail.com wrote: Hi, I am currently migrating my projects from my company's in-house build system based on ant, to maven. We have a concept of deliverable, where a deliverable may be a combination of projects. Two or more projects are

Surefire not behaving the way I expect....

2011-11-16 Thread Ed Hillmann
Hi. I have a test which takes a long time to run. What I'd like to do is exclude this test (written in JUnit) from the normal test phase, and only run it when a specific profile is defined. So, in my pom, I configure the surefire plugin with an excludes element, which contains the exclude child

Re: Building multi-module project with cross-references

2011-11-16 Thread Ron Wheeler
Your situation is pretty common. ProjectA ProjectB ProjectC ProjectD DeliverableX DeliverableY are all separate projects. You build and release Project A to D as independent library versions. The deliverables are just projects that depend on the other projects. Think of your projects in the

Re: Building multi-module project with cross-references

2011-11-16 Thread Ron Wheeler
We are a small team but have a couple of big Maven projects. One project has over 70 modules that depends on about 60 external libraries. The final application is a portal that runs on Tomcat. Ron On 16/11/2011 11:57 PM, Ron Wheeler wrote: Your situation is pretty common. ProjectA ProjectB

Re: Building multi-module project with cross-references

2011-11-16 Thread zebahmad
Thanks much for the pointer, Barrie! The assembly plugin looks to be exactly what I needed! Zeba -- View this message in context: http://maven.40175.n5.nabble.com/Building-multi-module-project-with-cross-references-tp437p596.html Sent from the Maven - Users mailing list archive at

Re: Building multi-module project with cross-references

2011-11-16 Thread zebahmad
Thanks for the info advice, Ron..Will keep in mind! Btw, using all of them as projects will not ensure the artifact structure to be maintained for deliverables - I need the deliverable to have the source contents of the other projects to be brought in .. Thanks, Zeba -- View this message in

Re: Surefire not behaving the way I expect....

2011-11-16 Thread Anders Hammar
Try the merge process config explained here: http://www.sonatype.com/people/2011/01/maven-how-to-merging-plugin-configuration-in-complex-projects/ /Anders On Thu, Nov 17, 2011 at 05:52, Ed Hillmann ed.hillm...@gmail.com wrote: Hi.  I have a test which takes a long time to run.  What I'd like to