As ServiceMix release is not available on public repository, you need
to have them in your local repo (by building from sources).
The other solution is to force maven to use another repository, which
can be done if you put the following snipped in your ~/.m2/settings.xml:
<settings>
<profiles>
<profile>
<id>incubating</id>
<repositories>
<repository>
<id>apache-incubating</id>
<url>http://people.apache.org/repo/m2-incubating-repository</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>incubating</activeProfile>
</activeProfiles>
</settings>
On 9/22/06, robottaway <[EMAIL PROTECTED]> wrote:
I was able to run the wsdl-first application. The release I used can be found
at this link:
http://servicemix.goopen.org/site/servicemix-30.html
The instructions on getting the service deployed and tested are here:
http://servicemix.org/sm30ug/1-quick-start.html#1.Quickstart-Deployasampleapplication
Still, no luck on building the service assembly using Maven :(
--
View this message in context:
http://www.nabble.com/WSDL-FIRST-example-Maven-build-problems-tf2319224.html#a6453546
Sent from the ServiceMix - User mailing list archive at Nabble.com.
--
Cheers,
Guillaume Nodet