devops基础05--maven pom.xml

####

pom.xml

 

1.maven的坐标

在maven中,通过groupId,artifactId,version三个向量在maven仓库中唯一定位到一个maven项目,使用坐标来描述当前项目存放在maven仓库的位置

<!-- 坐标 -->

<!-- 公司或组织的域名倒序 + 开发的项目名 -->
<groupId>com.dxc.ddccloud</groupId>

<!-- 项目中的模块名 -->
<artifactId>sample</artifactId>

<!-- 版本 -->
<version>0.0.1-SNAPSHOT</version>

使用mvn install安装到本地仓库的项目jar包的命名:artifactId-verion.jar

 

上一篇:2.1 SpringCloud__父项目建立


下一篇:Maven中的GroupID和ArtifactID