<?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">
    <parent>
        <groupId>com.mulesoft.mule.services</groupId>
        <artifactId>mule-service-http-ee-parent</artifactId>
        <version>1.14.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <!-- Need the WS cleint class in a differnet module to prevent access errors between jetty and the service module -->

    <name>HTTP Service EE Implementation - test WS Client</name>
    <description>EE Extension of the Grizzly based HTTP Service implementation - test WS Client</description>

    <artifactId>mule-service-http-ee-ws-client</artifactId>

    <properties>
        <javaModuleName>com.mulesoft.mule.service.http.ee.test</javaModuleName>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

        <!-- For websockets tests -->
        <dependency>
            <groupId>org.eclipse.jetty.websocket</groupId>
            <artifactId>websocket-jetty-client</artifactId>
        </dependency>
    </dependencies>

</project>
