<?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>io.github.gaoshq7</groupId>
        <artifactId>wormhole-parent</artifactId>
        <version>1.0.0-release</version>
    </parent>

    <artifactId>w-client</artifactId>
    <packaging>jar</packaging>

    <name>Wormhole Client</name>
    <description>Wormhole客户端模块</description>

    <dependencies>
        <!-- 依赖协议模块 -->
        <dependency>
            <groupId>io.github.gaoshq7</groupId>
            <artifactId>w-protocol</artifactId>
        </dependency>
        <!-- Apache Commons Logging -->
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
        </dependency>
        <!-- 测试依赖 -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>io.github.gaoshq7</groupId>
            <artifactId>w-executor</artifactId>
        </dependency>

        <dependency>
            <groupId>io.github.gaoshq7</groupId>
            <artifactId>w-audit</artifactId>
        </dependency>
    </dependencies>
</project>
