maven的pom.xml文件解释(远程仓库阿里云)

news/2024/12/28 17:11:25/
<?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><groupId>quick.pager</groupId><artifactId>spring-cloud-shop</artifactId><packaging>pom</packaging><version>cloud-1.0</version><!--项目开发者列表--><developers><developer><id>SiGuiyang</id><name>SiGuiyang</name></developer></developers><!--项目所属组织和组织主页URL--><organization><name>SiGuiyang</name><url>https://github.com/SiGuiyang</url></organization><!--项目问题管理系统--><issueManagement><system>github</system><url>https://github.com/SiGuiyang/spring-cloud-shop/issues</url></issueManagement><!--连接的版本库和代码库--><scm><url>git@github.com:seata/seata.git</url><connection>scm:git@github.com:SiGuiyang/spring-cloud-shop.git</connection><developerConnection>scm:git@github.com:SiGuiyang/spring-cloud-shop.git</developerConnection></scm><dependencyManagement><dependencies><dependency><groupId>quick.pager</groupId><artifactId>shop-dependencies</artifactId><version>${project.version}</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><!--远程仓库阿里云--><repositories><repository><id>aliyun</id><url>http://maven.aliyun.com/nexus/content/groups/public/</url></repository></repositories><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.1</version><configuration><source>1.8</source><target>1.8</target><encoding>UTF-8</encoding></configuration></plugin></plugins></build><modules><module>shop-activity</module><module>shop-auth</module><module>shop-cart</module><module>shop-common</module><module>shop-dependencies</module><module>shop-elasticsearch</module><module>shop-gateway</module><module>shop-goods</module><module>shop-job</module><module>shop-manage</module><module>shop-order</module><module>shop-oss</module><module>shop-platform</module><module>shop-risk</module><module>shop-seller</module><module>shop-settlement</module><module>shop-user</module><module>sharding-transaction-base-seata-at</module></modules>
</project>

一、parent

在这里插入图片描述

二、项目基本信息

在这里插入图片描述

三、prerequisites

在这里插入图片描述

四、issueManagement

在这里插入图片描述

五、ciManagement

在这里插入图片描述

六、inceptionYear&mailingLists

在这里插入图片描述

七、developers

在这里插入图片描述

八、contributors

在这里插入图片描述

九、licenses

在这里插入图片描述

十、scm(Source Control Management)

在这里插入图片描述

十一、organization

在这里插入图片描述

十二、build

在这里插入图片描述

十三、build中的resources元素

在这里插入图片描述

十四、build元素中的testResources元素

在这里插入图片描述

十五、 build元素中的directory、finalName、filters元素

在这里插入图片描述

十六、build元素中的pluginManagement元素

在这里插入图片描述

十七、 build元素中的plugins元素

在这里插入图片描述

十八、 modules元素

在这里插入图片描述

十九、 repositories元素

在这里插入图片描述

二十、pluginRepositories元素

在这里插入图片描述

二十一、dependencies元素

在这里插入图片描述

二十二、reports元素

在这里插入图片描述

二十三、reporting元素

在这里插入图片描述

二十四、 dependencyManagement元素

在这里插入图片描述

二十五、distributionManagement元素

在这里插入图片描述

二十六、properties元素

在这里插入图片描述
注:详解文件中,用红色进行标注的是平常项目中常用的配置节点。要详细学习!


http://www.ppmy.cn/news/974298.html

相关文章

MySQL表的管理

目录 1.mysql中&#xff0c;数据存储过程分为四步 2.数据库命名规则 3.创建数据库 4.管理数据库的方法 5.修改数据库&#xff08;一般不改&#xff0c;最多改字符集&#xff09; 6.删除数据库 7.如何创建数据表 8.修改表 9.重命名表 10.删除表&#xff08;注意⚠️无…

大模型网红项目AutoGPT案例、原理、源码解密

大模型网红项目AutoGPT案例、原理、源码解密 大模型网红项目AutoGPT案例、原理、源码解密 来自硅谷 第五期企业级ChatGPT 开发入门实战 直播21课,37个ChatGPT/LLMs案例,3万行代码解密硅谷核心LLMs技术,21小时直播,只需要Python基础即可学习 Gavin大咖微信&#xff1a;NLP_Matri…

Python中TensorFlow的长短期记忆神经网络(LSTM)、指数移动平均法预测股票市场和可视化...

原文链接&#xff1a;http://tecdat.cn/?p23689 本文探索Python中的长短期记忆&#xff08;LSTM&#xff09;网络&#xff0c;以及如何使用它们来进行股市预测&#xff08;点击文末“阅读原文”获取完整代码数据&#xff09;。 相关视频 在本文中&#xff0c;你将看到如何使用…

基于深度学习淡水鱼体重智能识别模型研究

工作原理为&#xff1a;首先对大众淡水鱼图片进行数据清洗并做标签分类&#xff0c;之后基于残差网络ResNet50模型进行有监督的分类识别训练&#xff0c;获取识别模型。其次通过搭建回归模型设计出体重模型&#xff0c;对每一类淡水鱼分别拟合出对应的回归方程&#xff0c;将获…

Qt6 Qt Quick UI原型学习QML第六篇

文章目录 效果展示动画片第一小节源码&#xff08;AnimationExample.qml&#xff09;主文件解释语法 源码子文件&#xff08;ClickableImageV2.qml&#xff09;解释语法 效果展示 动画片第一小节 源码&#xff08;AnimationExample.qml&#xff09;主文件 import QtQuick 2.1…

Python题目---文件类型

一、编写一个程序&#xff0c;可以将指定文件中的字符串修改&#xff0c;比如将文件中所有的"java"修改为"python". ①首先我们创建test_package包这个文件&#xff0c;并在文件下创建demo1.py的python文件&#xff0c;在里面定义一个函数如下&#xff1a;…

iOS--编译连接的过程_2

文章目录 iOS编译&#xff08;一&#xff09;编译器前端 编译器后端执行一次XCode build的流程 IPA包的内容二进制文件的内容iOS Link Map File文件说明1. Link Map File 是什么2. Link Map File 有什么用3. 生成 Link Map File查看Link Map File1&#xff09;路径部分计算机系…

Chat GPT真的是风险大于收益?

不可否认,自从允许公众访问和使用以来,ChatGPT 就一直是热门话题。人工智能现在已经成为每个人都知道的话题,尤其是在科技界。它已成为学校和大学课程的一部分,并且该主题已在教育学位和课程中占有一席之地。有几个 Open AI 应用程序以某种形式存在了很长一段时间,但并没有…