<?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>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.5.RELEASE</version>
        <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;
    </parent>-->
    <groupId>tech.mgl</groupId>
    <artifactId>mgl-exception</artifactId>
    <version>3.0</version>

    <licenses>
        <license>
            <name>仅本人使用，不用于任何第三方应用</name>
            <url>www.mgl.tech</url>
            <distribution>repo</distribution>
            <comments>person license</comments>
        </license>
    </licenses>

    <scm>
        <tag>mgl</tag>
        <url>https://mgl.tech/p/mgl-base</url>
        <developerConnection>https://mgl.tech/p/mgl-base</developerConnection>
    </scm>
    <description>
        THIS FILE IS PART OF MGL PROJECT MGL.ONE
        - The core part of the reboot library （文件名和作用概述）
        Copyright (c) 1989-2016 MGL.ONE
        Copyright (c) 2016 MGL.TECH
        任何网站未经本公司授权，不得盗用本站所有资源及所有代码否则追究法律责任
        任何网站未经本公司授权，任何人不得作全部或部分复制或仿造否则追究法律责任
    </description>

    <developers>
        <developer>
            <id>hotpot</id>
            <name>hotpot</name>
            <email>hotpot@mgl.tech</email>
        </developer>
    </developers>
    <organization>
        <name>MGL技术社区</name>
        <url>https://www.mgl.tech/</url>
    </organization>

    <url>https://mgl.tech/p/mgl-base</url>

<!--
    <version>0.0.2-SNAPSHOT</version>
-->
    <name>mgl-exception</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <!--<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>-->

        <!--<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>-->
    </dependencies>
    <distributionManagement>
        <downloadUrl>https://mgl.tech/p/mgl-base/downloads</downloadUrl>
    </distributionManagement>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>3.0.2</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        </manifest>
                        <manifestEntries>
                            <Implementation-Build>20</Implementation-Build>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
