<?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">
    <!-- 
        父POM: tang-framework-parent 3.0-SNAPSHOT
        升级说明: 使用Spring Cloud 2023版本，所有组件版本跟随升级
        Java版本: 17
    -->
    <parent>
        <artifactId>tang-framework-parent</artifactId>
        <groupId>com.tcbj</groupId>
        <version>3.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>tang-sales-auth-module</artifactId>
    <version>3.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <modules>
        <module>tang-sales-auth-module-api</module>
        <module>tang-sales-auth-module-service</module>
    </modules>

    <properties>
        <!-- Spring Cloud 2023 要求 Java 17+ -->
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>

</project>