<?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>
    <parent>
        <groupId>io.github.frailty9</groupId>
        <artifactId>framegen-bom</artifactId>
        <version>2.0.0</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>

    <artifactId>framegen-starter</artifactId>

    <name>FrameGen fast starter</name>
    <description>
        Fast starter components for FrameGen code generation framework.
        The default template engine is ST4. If you want to change it, please exclude it where dependency like:
        <![CDATA[
            <dependency>
                <groupId>io.github.frailty9</groupId>
                <artifactId>framegen-starter</artifactId>
                <exclusions>
                    <exclusion>
                        <groupId>io.github.frailty9</groupId>
                        <artifactId>framegen-engine-st4</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
        ]]>
    </description>
    <url>https://gitee.com/frailty/frame-gen/tree/main/starters/framegen-starter</url>

    <licenses>
        <license>
            <name>The MIT License</name>
            <url>http://opensource.org/licenses/MIT</url>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:https://gitee.com/frailty/frame-gen.git</connection>
        <developerConnection>scm:git:git@gitee.com:frailty/frame-gen.git</developerConnection>
        <url>https://gitee.com/frailty/frame-gen</url>
    </scm>

    <developers>
        <developer>
            <id>Frailty</id>
            <name>花殇</name>
            <email>ydl9263@qq.com</email>
        </developer>
    </developers>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.github.frailty9</groupId>
            <artifactId>framegen-core</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.frailty9</groupId>
            <artifactId>framegen-engine-st4</artifactId>
        </dependency>
    </dependencies>

</project>