<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>
<!--    API模块作为交互模块，例如RPC请求，RPC请求参数，响应参数-->
    <parent>
        <groupId>io.github.akagua1</groupId>
        <artifactId>cloudclass-common</artifactId>
        <version>1.0.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>cloudclass-api</artifactId>
    <packaging>jar</packaging>

    <name>${project.artifactId}</name>
    <description>The cache module for cloudclass project.</description>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.deploy.skip>false</maven.deploy.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.github.akagua1</groupId>
            <artifactId>cloudclass-base</artifactId>
        </dependency>
    </dependencies>

    <build>
    <plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>3.1.1</version> <!-- 建议明确版本 -->
        <configuration>
            <skip>false</skip>
        </configuration>
    </plugin>
    </plugins>
    </build>

</project>
