In the project I'm working on, we use maven to manage dependencies. However, we are having problems with the apache shaft, which is the security module for Axis2. We tried to use the following dependency tags:
<dependency>
<groupId>org.apache.rampart</groupId>
<artifactId>rampart</artifactId>
<version>1.3</version>
<type>mar</type>
</dependency>
<dependency>
<groupId>org.apache.rampart</groupId>
<artifactId>rampart</artifactId>
<version>1.4</version>
<type>mar</type>
</dependency>
What happens is that maven cannot find several resources that are included depending on the rampart pom files (note that ramp pom files are automatically downloaded by maven, so I did not have to edit these files).
When I enter the URI of the rampart dependencies that maven could not find, I get 404 error. It looks like the apam rampart pom files are broken ...
Has someone successfully used the shaft with maven? Is this apache integration with maven broken?