<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>wu-smart-intergration</artifactId>
        <groupId>top.wu2020</groupId>
        <version>1.0.8</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>wu-smart-acw</artifactId>
    <packaging>pom</packaging>
    <description>Automatic code writing</description>


    <modules>
        <module>wu-smart-acw-core</module>
        <module>wu-smart-acw-client</module>
        <module>wu-smart-acw-server</module>
        <module>wu-smart-acw-simple</module>
    </modules>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <wu-smart-acw-core.version>${project.version}</wu-smart-acw-core.version>
        <wu-smart-acw-client.version>${project.version}</wu-smart-acw-client.version>
        <wu-smart-acw-server.version>${project.version}</wu-smart-acw-server.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>top.wu2020</groupId>
                <artifactId>wu-smart-acw-core</artifactId>
                <version>${wu-smart-acw-core.version}</version>
            </dependency>
            <dependency>
                <groupId>top.wu2020</groupId>
                <artifactId>wu-smart-acw-server</artifactId>
                <version>${wu-smart-acw-server.version}</version>
            </dependency>
            <dependency>
                <groupId>top.wu2020</groupId>
                <artifactId>wu-smart-acw-client</artifactId>
                <version>${wu-smart-acw-client.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>


</project>