<project xmlns="http://POM/4.0.0" xmlns:xsi="http://2001/XMLSchema-instance" xsi:schemaLocation="http://POM/4.0.0 http://xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>cn.granitech</groupId>
    <artifactId>spring-brick-maven-packager</artifactId>
    <version>3.1.3</version>

    <packaging>jar</packaging>
    <name>spring-brick-maven-packager</name>
    <description>extention for spring-brick-maven-packager</description>

    <url>https://github.com/MetaLowCodeTeam/MetaLowCode</url>

<properties>
        <java.version>8</java.version>
        <maven.version>3.0.0</maven.version>
        <maven.compiler.source>${java.version}</maven.compiler.source>
        <maven.compiler.target>${java.version}</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.encoding>UTF-8</maven.compiler.encoding>

        <maven-plugin-api.version>3.8.4</maven-plugin-api.version>
        <maven-plugin-annotations.version>3.6.2</maven-plugin-annotations.version>
        <maven-common-artifact-filters.version>3.2.0</maven-common-artifact-filters.version>
        <commons-compress.version>1.21</commons-compress.version>
        <commons-io.version>2.11.0</commons-io.version>
        <lombok.version>1.18.20</lombok.version>
        <junit.version>3.8.1</junit.version>

        <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
    </properties>

    <dependencies>
        <!-- common -->
        <dependency>
            <groupId>com.gitee.starblues</groupId>
            <artifactId>spring-brick-common</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!-- maven api -->
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>${maven-plugin-api.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.maven.plugin-tools</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>${maven-plugin-annotations.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.maven.shared</groupId>
            <artifactId>maven-common-artifact-filters</artifactId>
            <version>${maven-common-artifact-filters.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-compress</artifactId>
            <version>${commons-compress.version}</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>${commons-io.version}</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>

    </dependencies>
    
    <!-- 开发者 -->
    <developers>
        <developer>
            <id>jisheng</id>
            <name>jisheng</name>
            <email>13651765405@139.com</email>
            <organization>MetaLowCodeTeam</organization>
            <organizationUrl>MetaLowCodeTeam</organizationUrl>
            <roles>
                <role>CAFE BABE</role>
            </roles>
            <timezone>+8</timezone>
        </developer>
    </developers>

    <!-- 版本控制，供其他插件使用 -->
    <scm>
        <connection>scm:git@github.com:MetaLowCodeTeam/MetaLowCode.git</connection>
        <developerConnection>scm:git@github.com:MetaLowCodeTeam/MetaLowCode.git</developerConnection>
        <url>git@github.com:MetaLowCodeTeam/MetaLowCode.git</url>
    </scm>

    <!-- 许可 -->
    <!--开源协议采用 Apache 2.0 协议-->
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>


</project>
