坐标设置
坐标设置的目的是为了保证项目的唯一性
groupId 一般分为两段,第一段为域,国际com,中国cn,第二段是个人标识,如:公司,个人。
artifactId 这个项目是项目的ID。
version 表示版本。
packaging 项目要打包成什么格式,不写这个标签默认打包为jar。
<groupId>com.nf</groupId>
<artifactId>demo</artifactId>
<version>1.0</verstion>
<packaging>war</packaging>
建立依赖
<dependency>
<groupId></groupId>
<artifactId></artifactId>
</dependency>