<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--
  ~ /*
  ~  * Copyright (c) 2022
  ~  * http://license.coscl.org.cn/MulanPSL2
  ~  * 汪旭辉
  ~  */
  -->
<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>
    <groupId>cn.bigcore</groupId>
    <artifactId>micro-framework</artifactId>
    <packaging>pom</packaging>
    <name>micro-framework</name>
    <description>micro-framework</description>
    <version>11.0.12-RELEASE</version>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>cn.bigcore</groupId>
                <artifactId>micro-dependencies</artifactId>
                <version>11.0.12-RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <modules>
        <module>micro-bigcore</module>
        <module>micro-springboot</module>
        <module>micro-extend</module>
        <module>micro-pack</module>
    </modules>



    <scm>
        <connection>scm:git:git://gitee.com/wangxuhui918/home-integrate-system.git</connection>
        <developerConnection>scm:git:ssh://gitee.com/wangxuhui918/home-integrate-system.git</developerConnection>
        <url>https://gitee.com/wangxuhui918/home-integrate-system/tree/v11-dev</url>
    </scm>

    <issueManagement>
        <system>System Issue</system>
        <url>https://gitee.com/wangxuhui918/home-integrate-system/issues</url>
    </issueManagement>

    <licenses>
        <license>
            <name>Mulan Permissive Software License，Version 1</name>
            <url>http://license.coscl.org.cn/MulanPSL</url>
        </license>
    </licenses>

    <url>https://gitee.com/wangxuhui918/home-integrate-system</url>

    <developers>
        <developer>
            <name>wangxuhui</name>
            <email>wangxuhui918@163.com</email>
        </developer>
    </developers>

    <distributionManagement>
        <!--        <snapshotRepository>-->
        <!--            <id>snapshot-central-sonatype-com</id>-->
        <!--            <name>Sonatype Nexus Snapshots</name>-->
        <!--            <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>-->
        <!--        </snapshotRepository>-->
        <repository>
            <id>release-central-sonatype-com</id>
            <name>Nexus Release Repository</name>
            <url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
        </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.11.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <compilerArgs>
                        <arg>-XDignore.symbol.file</arg>
                    </compilerArgs>
                    <fork>true</fork>
                </configuration>
            </plugin>
            <!-- Javadoc -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.1.1</version>
                <configuration>
                    <doclint>none</doclint>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!-- source包 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.3.0</version>
                <configuration>
                    <attach>true</attach>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>3.1.0</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                        <configuration>
                            <keyname>32183B15E32DC3C8990DD5641637EED8CE517F94</keyname>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.3.0</version>
                <extensions>true</extensions>
                <configuration>
                    <publishingServerId>release-central-sonatype-com</publishingServerId>
                    <tokenAuth>true</tokenAuth>
                    <autoPublish>true</autoPublish>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>