pom.xml 文件详解

今天重新配置了hadoop和hbase

学习了maven并配置了IDEA的maven

pom.xml详解:

https://blog.csdn.net/jk418756/article/details/87917776

完整的:

 1 <project xmlns="http://maven.apache.org/POM/4.0.0" 
 2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
 4                       http://maven.apache.org/maven-v4_0_0.xsd">
 5   <modelVersion>4.0.0</modelVersion>
 6   <!– The Basics –>
 7   <groupId>…</groupId>
 8   <artifactId>…</artifactId>
 9   <version>…</version>
10   <packaging>…</packaging>
11   <dependencies>…</dependencies>
12   <parent>…</parent>
13   <dependencyManagement>…</dependencyManagement>
14   <modules>…</modules>
15   <properties>…</properties>
16   <!– Build Settings –>
17   <build>…</build>
18   <reporting>…</reporting>
19   <!– More Project Information –>
20   <name>…</name>
21   <description>…</description>
22   <url>…</url>
23   <inceptionYear>…</inceptionYear>
24   <licenses>…</licenses>
25   <organization>…</organization>
26   <developers>…</developers>
27   <contributors>…</contributors>
28   <!– Environment Settings –>
29   <issueManagement>…</issueManagement>
30   <ciManagement>…</ciManagement>
31   <mailingLists>…</mailingLists>
32   <scm>…</scm>
33   <prerequisites>…</prerequisites>
34   <repositories>…</repositories>
35   <pluginRepositories>…</pluginRepositories>
36   <distributionManagement>…</distributionManagement>
37   <profiles>…</profiles>
38 </project>

 pom.xml 文件详解

 

 pom.xml 文件详解

 

 pom.xml 文件详解

 

 pom.xml 文件详解

 

上一篇:很不错的安卓FadingActionBar控件源码


下一篇:maven聚合项目解析