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
标签:xml,05,--,jar,maven,仓库,pom,artifactId 来源: https://www.cnblogs.com/omgasw/p/15132720.html