Hi all,
I am new to xfire, and new to maven, and I am having trouble getting a build to run the samples. I am trying to use maven to get all my dependencies, but I am not entirely sure what dependencies I should have, and what repositories I should use. I followed this page recommendations: http://xfire.codehaus.org/Maven+Guide
For these dependencies:
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-jaxb2</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-spring</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-java5</artifactId>
<version>1.0</version>
</dependency>
And with this repository:
<repositories>
<repository>
<id>codehaus</id>
<name>Codehaus maven repository</name>
<url>http://dist.codehaus.org/</url>
<layout>legacy</layout>
</repository>
</repositories>
And it keeps choking on various jars, I am not even sure where they are getting pulled in from. Anyone has a complete sample pom that I can use for the sample?
Thanks in advance,
Olia
