1. 程式人生 > >maven 配置文件的標簽的說明

maven 配置文件的標簽的說明

snapshot sta 可選 clas AR sco down 是否 sna

        <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">
  <!--    指定當前的pom的版本 -->
  <modelVersion>4.0.0</modelVersion>
  <!--   反寫的公司網址+項目名 -->
<groupId>com.imooc.hi</groupId> <!-- 項目名加+模板名 --> <artifactId>hi</artifactId> <version>0.0.1-SNAPSHOT</version> <!-- 默認是 jar war zip pom --> <packaging>jar</packaging> <!-- 項目描述名 --> <name></name> <
url>項目地址</url> <!-- 項目依賴 --> <dependencies> <dependency> <groupId>11</groupId> <artifactId>22</artifactId> <version>22</version> <scope>依賴範圍</scope> <!-- 設置依賴是否可選 默認false 子項目默認是繼承該依賴的 -->
<optional></optional> <!-- 排除依賴傳遞的列表 --> <exclusions> <exclusion></exclusion> </exclusions> </dependency> </dependencies> <!-- 依賴的管理 --> <dependencyManagement> </dependencyManagement> <build> <!-- 插件列表 --> <plugins> <plugin> </plugin> </plugins> </build> <parent>繼承</parent> <modules>多個模塊一起編譯</modules> </project>

maven 配置文件的標簽的說明