maven的pom.xml文件解释(远程仓库阿里云)


<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.0modelVersion>

    <groupId>quick.pagergroupId>
    <artifactId>spring-cloud-shopartifactId>
    <packaging>pompackaging>
    <version>cloud-1.0version>

    
    <developers>
        <developer>
            <id>SiGuiyangid>
            <name>SiGuiyangname>
        developer>
    developers>

    
    <organization>
        <name>SiGuiyangname>
        <url>https://github.com/SiGuiyangurl>
    organization>

    
    <issueManagement>
        <system>githubsystem>
        <url>https://github.com/SiGuiyang/spring-cloud-shop/issuesurl>
    issueManagement>

    
    <scm>
        <url>[email protected]:seata/seata.giturl>
        <connection>scm:[email protected]:SiGuiyang/spring-cloud-shop.gitconnection>
        <developerConnection>scm:[email protected]:SiGuiyang/spring-cloud-shop.gitdeveloperConnection>
    scm>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>quick.pagergroupId>
                <artifactId>shop-dependenciesartifactId>
                <version>${project.version}version>
                <type>pomtype>
                <scope>importscope>
            dependency>
        dependencies>
    dependencyManagement>

	
    <repositories>
        <repository>
            <id>aliyunid>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
        repository>
    repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-compiler-pluginartifactId>
                <version>3.1version>
                <configuration>
                    <source>1.8source>
                    <target>1.8target>
                    <encoding>UTF-8encoding>
                configuration>
            plugin>
        plugins>
    build>
    <modules>
        <module>shop-activitymodule>
        <module>shop-authmodule>
        <module>shop-cartmodule>
        <module>shop-commonmodule>
        <module>shop-dependenciesmodule>
        <module>shop-elasticsearchmodule>
        <module>shop-gatewaymodule>
        <module>shop-goodsmodule>
        <module>shop-jobmodule>
        <module>shop-managemodule>
        <module>shop-ordermodule>
        <module>shop-ossmodule>
        <module>shop-platformmodule>
        <module>shop-riskmodule>
        <module>shop-sellermodule>
        <module>shop-settlementmodule>
        <module>shop-usermodule>
        <module>sharding-transaction-base-seata-atmodule>
    modules>
project>

一、parent

maven的pom.xml文件解释(远程仓库阿里云)_第1张图片

二、项目基本信息

maven的pom.xml文件解释(远程仓库阿里云)_第2张图片

三、prerequisites

maven的pom.xml文件解释(远程仓库阿里云)_第3张图片

四、issueManagement

maven的pom.xml文件解释(远程仓库阿里云)_第4张图片

五、ciManagement

maven的pom.xml文件解释(远程仓库阿里云)_第5张图片

六、inceptionYear&mailingLists

maven的pom.xml文件解释(远程仓库阿里云)_第6张图片

七、developers

maven的pom.xml文件解释(远程仓库阿里云)_第7张图片

八、contributors

maven的pom.xml文件解释(远程仓库阿里云)_第8张图片

九、licenses

maven的pom.xml文件解释(远程仓库阿里云)_第9张图片

十、scm(Source Control Management)

maven的pom.xml文件解释(远程仓库阿里云)_第10张图片

十一、organization

maven的pom.xml文件解释(远程仓库阿里云)_第11张图片

十二、build

maven的pom.xml文件解释(远程仓库阿里云)_第12张图片

十三、build中的resources元素

maven的pom.xml文件解释(远程仓库阿里云)_第13张图片

十四、build元素中的testResources元素

maven的pom.xml文件解释(远程仓库阿里云)_第14张图片

十五、 build元素中的directory、finalName、filters元素

maven的pom.xml文件解释(远程仓库阿里云)_第15张图片

十六、build元素中的pluginManagement元素

maven的pom.xml文件解释(远程仓库阿里云)_第16张图片

十七、 build元素中的plugins元素

maven的pom.xml文件解释(远程仓库阿里云)_第17张图片

十八、 modules元素

maven的pom.xml文件解释(远程仓库阿里云)_第18张图片

十九、 repositories元素

maven的pom.xml文件解释(远程仓库阿里云)_第19张图片

二十、pluginRepositories元素

maven的pom.xml文件解释(远程仓库阿里云)_第20张图片

二十一、dependencies元素

maven的pom.xml文件解释(远程仓库阿里云)_第21张图片

二十二、reports元素

在这里插入图片描述

二十三、reporting元素

maven的pom.xml文件解释(远程仓库阿里云)_第22张图片

二十四、 dependencyManagement元素

maven的pom.xml文件解释(远程仓库阿里云)_第23张图片

二十五、distributionManagement元素

maven的pom.xml文件解释(远程仓库阿里云)_第24张图片

二十六、properties元素

maven的pom.xml文件解释(远程仓库阿里云)_第25张图片
注:详解文件中,用红色进行标注的是平常项目中常用的配置节点。要详细学习!

你可能感兴趣的:(maven,xml,java)