You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
2.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<!--公司项目组唯一的标识符实际对应JAVA的包的结构是main目录里java的目录结构-->
<groupId>com.icharge.framework</groupId>
<!--项目组中的某模块的唯一的标识符实际对应小项目的名称。artifactId一般是项目名或者模块名。-->
<artifactId>rough</artifactId>
<!--pom的意思是项目里没有java代码也不执行任何代码只是为了聚合工程或传递依赖用的。-->
<packaging>pom</packaging>
<!--整体项目的大版本号-->
<version>1.0.0</version>
<!--项目的名称, Maven产生的文档用-->
<name>one project build</name>
<!-- 项目的详细描述, Maven 产生的文档用。 当这个元素能够用HTML格式描述时例如CDATA中的文本会被解析器忽略就可以包含HTML标 签), 不鼓励使用纯文本描述。如果你需要修改产生的web站点的索引页面你应该修改你自己的索引页文件而不是调整这里的文档。-->
<description>宜行驿来特产品基础研发框架</description>
<!--模块(有时称作子项目) 被构建成项目的一部分。列出的每个模块元素是指向该模块的目录的相对路径-->
<modules>
<!-- 核心依赖版本 -->
<module>rough-dependencies</module>
</modules>
<!-- 定义snapshots库和releases库的nexus地址 -->
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Releases</name>
<!--下面的域名是 快卜 网站应该是私有的Maven仓库-->
<url>https://nexus.ikbvip.com/repository/kb-releases/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot</name>
<url>https://nexus.ikbvip.com/repository/kb-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>