<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.jpmorgan.quorum</groupId>
        <artifactId>tessera-jaxrs</artifactId>
        <version>0.10.2</version>
    </parent>
    <artifactId>common-jaxrs</artifactId>
    <packaging>jar</packaging>
    
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.jpmorgan.quorum</groupId>
                <artifactId>mock-service-locator</artifactId>
                <version>0.10.2</version>
                <scope>test</scope>
            </dependency>
            

            
        </dependencies>
    </dependencyManagement>
    
    <dependencies>
        <dependency>
            <groupId>com.jpmorgan.quorum</groupId>
            <artifactId>mock-service-locator</artifactId>
            <scope>test</scope>
        </dependency>
        
        <dependency>
            <groupId>com.jpmorgan.quorum</groupId>
            <artifactId>service-locator-spring</artifactId>
        </dependency>
        
        <dependency>
            <groupId>org.glassfish.jersey.test-framework.providers</groupId>
            <artifactId>jersey-test-framework-provider-jetty</artifactId>
        </dependency>
        
        <dependency>
            <groupId>com.jpmorgan.quorum</groupId>
            <artifactId>jaxrs-client</artifactId>
        </dependency>
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <classpathDependencyExcludes>com.jpmorgan.quorum:service-locator-spring</classpathDependencyExcludes>
                </configuration>

            </plugin>

        </plugins>
    </build>
    
</project>