<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>cn.gomro.commons</groupId>
        <artifactId>commons-dependencies</artifactId>
        <version>0.0.10</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <groupId>cn.gomro</groupId>
    <artifactId>restful-api</artifactId>
    <version>0.0.4</version>
    <name>RESTful API Generic Interface Request and Response Wrapper</name>
    <description>RESTful API 通用接口请求及响应包装类</description>
    <properties>
        <java.version>17</java.version>
    </properties>

    <distributionManagement>
        <relocation>
            <groupId>cn.gomro.commons</groupId>
            <artifactId>restful-api</artifactId>
            <message>已过期， 请使用groupId: cn.gomro.commons代替。</message>
        </relocation>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>17</source>
                    <target>17</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
