<?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>
        <artifactId>openapi</artifactId>
        <groupId>io.github.hdwang123</groupId>
        <version>2.0.1</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>openapi-client-sdk</artifactId>
    <name>OpenAPI Client SDK</name>
    <description>openapi客户端sdk</description>
    <url>https://github.com/hdwang123/openapi</url>
    <!-- 许可证信息 -->
    <licenses>
        <!-- Apache许可证 -->
        <license>
            <name>Apache License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>

    <!-- SCM信息 ->  -->
    <scm>
        <connection>https://github.com/hdwang123/openapi.git</connection>
        <developerConnection>https://github.com/hdwang123/openapi.git</developerConnection>
        <url>https://github.com/hdwang123/openapi</url>
    </scm>
    <!-- 开发者信息 -->
    <developers>
        <developer>
            <name>hdwang123</name>
            <email>1182583214@qq.com</email>
            <url>https://github.com/hdwang123</url>
        </developer>
    </developers>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <dependencies>
        <!-- openapi sdk 基础包 -->
        <dependency>
            <groupId>io.github.hdwang123</groupId>
            <artifactId>openapi-sdk-common</artifactId>
            <version>2.0.1</version>
        </dependency>

        <!-- SpringBoot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        
        <!-- lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
