<?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>framework</artifactId>
        <groupId>com.freelancer</groupId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>core</artifactId>
    <packaging>pom</packaging>
    <description>核心组件，绝大部分项目都有概率使用到的组件</description>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>

    <modules>
        <module>common-base</module>
        <module>common-mybatis</module>
        <module>common-file</module>
        <module>common-jackson</module>
        <module>common-bus</module>
        <module>common-web</module>
        <module>common-spring</module>
        <module>common-jwt</module>
        <module>common-validator</module>
        <module>common-bridge</module>
    </modules>

</project>