<?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>

    <groupId>com.jxdinfo.hussar.platform.boot</groupId>
    <artifactId>hussar-base-bom</artifactId>
    <version>9.5.9</version>
    <packaging>pom</packaging>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <spring-boot-starter.version>2.7.18</spring-boot-starter.version>

        <hussar-platform-boot.version>9.5.9</hussar-platform-boot.version>
        <hussar-base-system-api.version>${hussar-platform-boot.version}</hussar-base-system-api.version>

        <plugin-library-bom.version>9.5.9</plugin-library-bom.version>
    </properties>


    <dependencyManagement>
        <dependencies>
            <!--springboot依赖管理-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot-starter.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

            <!--平台插件依赖管理-->
            <dependency>
                <groupId>com.jxdinfo.hussar.support</groupId>
                <artifactId>plugin-library-bom</artifactId>
                <version>${plugin-library-bom.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

            <dependency>
                <groupId>com.jxdinfo.hussar.platform.boot</groupId>
                <artifactId>hussar-base-system-api</artifactId>
                <version>${hussar-base-system-api.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
            </plugin>
        </plugins>
    </build>
</project>
