Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Not A Problem
-
servicemix-http-2009.01
-
None
-
Patch Available
Description
I went to build the servicemix-http binding component off of its trunk. Maven was complaining about not being able to find all the required parent poms. I noticed that currently the parent pom is set to:
http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-http/trunk/pom.xml
<parent> <groupId>org.apache.servicemix</groupId> <artifactId>components-pom</artifactId> <version>2-SNAPSHOT</version> </parent>
To get the build to work I had to set it to:
<parent> <groupId>org.apache.servicemix</groupId> <artifactId>components-pom</artifactId> <version>3-SNAPSHOT</version> </parent>
I haven't looked at the other binding components but they may also suffer from the same problem.