<?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 https://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.3.3.RELEASE</version> 
    </parent>  
    <groupId>com.foxnicweb.web</groupId>  
    <artifactId>parent</artifactId>  
    <version>1.7.0.RELEASE</version>  
    <packaging>pom</packaging>  
    <name>Foxnic-Web-Parent</name>  
    <description>Foxnic Web Parent</description>  
    <url>http://foxnicweb.com/docs/doc.html</url>  
    <developers> 
        <developer> 
            <name>LeeFJ</name>  
            <email>leefangjie@qq.com</email>  
            <organization>FoxnicWeb</organization>  
            <url>http://foxnicweb.com/docs/doc.html</url>  
            <organizationUrl>http://web.foxnicweb.com/</organizationUrl> 
        </developer> 
    </developers>  
    <scm> 
        <connection>scm:git:https://gitee.com/LeeFJ/foxnic</connection>  
        <developerConnection>scm:git@gitee.com:LeeFJ/foxnic.git</developerConnection>  
        <url>https://gitee.com/LeeFJ/foxnic</url>  
        <tag>1.7.0.RELEASE</tag> 
    </scm>  
    <licenses> 
        <license> 
            <name>The Apache Software License, Version 2.0</name>  
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>  
            <distribution>repo</distribution>  
            <comments>A business-friendly OSS license</comments> 
        </license> 
    </licenses>  
    <properties> 
        <skipTests>true</skipTests>  
        <javadoc.encoding>UTF-8</javadoc.encoding>  
        <java.version>1.8</java.version>  
        <maven.compiler.source>1.8</maven.compiler.source>  
        <java.version>1.8</java.version>  
        <maven.compiler.source>1.8</maven.compiler.source>  
        <maven.compiler.target>1.8</maven.compiler.target>  
        <maven.javadoc.skip>true</maven.javadoc.skip>  
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
        <spring.cloud.version>Hoxton.SR8</spring.cloud.version>  
        <alibaba.cloud.version>2.2.5.RELEASE</alibaba.cloud.version>  
        <sprite.version>5.2.8.RELEASE</sprite.version>  
        <cangaroo.version>1.7.0.RELEASE</cangaroo.version>  
        <sentinel.version>1.8.0</sentinel.version>  
        <seata.version>1.3.0</seata.version>  
        <seata.cloud.version>2.2.0.RELEASE</seata.cloud.version>  
        <platform.version>1.7.0.RELEASE</platform.version>  
        <foxnic.version>1.7.0.RELEASE</foxnic.version>  
        <knife4j.version>3.0.3</knife4j.version>  
        <xmlbeans.version>4.0.0</xmlbeans.version>  
        <poi.version>4.1.2</poi.version>  
        <servlet.api.version>4.0.1</servlet.api.version>  
        <oshi.core.version>5.7.5</oshi.core.version>  
        <mysql.version>5.1.49</mysql.version>  
        <camunda.version>7.17.0</camunda.version> 
    </properties>  
    <dependencies/>  
    <build> 
        <defaultGoal>compile</defaultGoal>  
        <plugins> 
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-surefire-plugin</artifactId>  
                <version>3.0.0-M5</version>  
                <configuration> 
                    <skip>true</skip> 
                </configuration> 
            </plugin>  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-compiler-plugin</artifactId>  
                <version>3.3</version>  
                <configuration> 
                    <encoding>${project.build.sourceEncoding}</encoding>  
                    <source>${maven.compiler.source}</source>  
                    <target>${maven.compiler.target}</target> 
                </configuration> 
            </plugin>  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-source-plugin</artifactId>  
                <version>2.2.1</version>  
                <executions> 
                    <execution> 
                        <id>attach-sources</id>  
                        <goals> 
                            <goal>jar-no-fork</goal> 
                        </goals> 
                    </execution> 
                </executions> 
            </plugin>  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-javadoc-plugin</artifactId>  
                <version>2.10.4</version>  
                <configuration> 
                    <encoding>${javadoc.encoding}</encoding>  
                    <aggregate>true</aggregate>  
                    <charset>${javadoc.encoding}</charset>  
                    <docencoding>${javadoc.encoding}</docencoding>  
                    <skip>${maven.javadoc.skip}</skip> 
                </configuration>  
                <executions> 
                    <execution> 
                        <id>attach-javadocs</id>  
                        <phase>package</phase>  
                        <goals> 
                            <goal>jar</goal> 
                        </goals>  
                        <configuration> 
                            <additionalparam>-Xdoclint:none</additionalparam> 
                        </configuration> 
                    </execution> 
                </executions> 
            </plugin>  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-jar-plugin</artifactId>  
                <version>3.1.0</version>  
                <configuration> 
                    <archive> 
                        <manifest> 
                            <addClasspath>true</addClasspath>  
                            <classpathPrefix>lib/</classpathPrefix> 
                        </manifest> 
                    </archive> 
                </configuration> 
            </plugin>  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-dependency-plugin</artifactId>  
                <executions> 
                    <execution> 
                        <id>copy-dependencies</id>  
                        <phase>package</phase>  
                        <goals> 
                            <goal>copy-dependencies</goal> 
                        </goals>  
                        <configuration> 
                            <outputDirectory>${project.build.directory}/lib</outputDirectory> 
                        </configuration> 
                    </execution> 
                </executions> 
            </plugin>  
            <!--Maven GPG插件用于使用以下配置对组件进行签名-->  
            <plugin> 
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-gpg-plugin</artifactId>  
                <version>3.0.1</version>  
                <executions> 
                    <execution> 
                        <id>sign-artifacts</id>  
                        <phase>verify</phase>  
                        <goals> 
                            <goal>sign</goal> 
                        </goals> 
                    </execution> 
                </executions> 
            </plugin>  
            <!--Nexus Staging Maven插件是将组件部署到OSSRH并将其发布到Central Repository的推荐方法-->  
            <plugin> 
                <groupId>org.sonatype.plugins</groupId>  
                <artifactId>nexus-staging-maven-plugin</artifactId>  
                <version>1.6.7</version>  
                <extensions>true</extensions>  
                <configuration> 
                    <serverId>sonatype_account</serverId>  
                    <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>  
                    <autoReleaseAfterClose>true</autoReleaseAfterClose> 
                </configuration> 
            </plugin> 
        </plugins> 
    </build> 
</project>
