maven项目的pom文件中常用的简单的标签理解

maven的pom文件一些标签的理解

在本篇文章中,我只是将pom文件中的一些常用的并且比较简单的标签理解标记注释了。还有很多并常用但是也很重要的这里并没有列出。因为本人水平也有限的,所以请谅解。

<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/maven-v4_0_0.xsd">

  
  <modelVersion>4.0.0modelVersion>

  
  <groupId>xia.testHuaWeigroupId>

  
  <artifactId>test_webartifactId>

  
  <packaging>warpackaging>

  
  <version>0.0.1-SNAPSHOTversion>


  
  <name>test_web Maven Webappname>
  
  <url>http://maven.apache.orgurl>
  
  <description>A maven project to study pom of mavendescription>

  
  <properties>
    <file-encoding>file-encoding>
  properties>

  
  <dependencies>
    <dependency>
      <groupId>junitgroupId>
      <artifactId>junitartifactId>
      <version>3.8.1version>
      <scope>testscope>
    dependency>
  dependencies>



  
  <build>
    
    <finalName>test_webfinalName>

    
    <resources>
        <resource>
            
            <directory>src/mian/resourcesdirectory>
            
            <includes>
                <include>**/*.propertiesinclude>
                <include>**/*.xmlinclude>
            includes>

               
            <excludes>  
                <exclude>jdbc.propertiesexclude>  
            excludes> 

        resource>

    resources>

  build>

project>

后续会随着自己不断的学习,其他标签的理解也会发表出来。让我们一起学习吧!

你可能感兴趣的:(maven)