> The monitor project does not need the axis2 addressing mar but it is 
> 'grabbing'
> it. In the monitor's assembly.xml file and pom.xml there is no reference to 
> axis2.
> The only reference to it is in the database connectivity project.

In that case, most likely you can simply adjust your current
dependency in the monitor project's pom file to something like this:
<dependency>
<groupId>com.p1s.mps</groupId> <!-- a guess -->
<artifactId>common</artifactId> <!-- another guess -->
<exclusions>
    <exclusion>
        <groupId>org.apache.axis2</groupId>
        <artifactId>addressing</artifactId>
        <version>${apache.axis2.version}</version>
        <type>mar</type>
    </exclusion>
</exclusions>
</dependency>

Wayne

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to