SpringCloud系列博客父工程xml依赖

<?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>com.xiaohui.springCloud</groupId><artifactId>SpringCloud</artifactId><version>1.0-SNAPSHOT</version><packaging>pom</packaging><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.2.2.RELEASE</version></parent><modules><module>product_service</module><module>seata_product_service</module><module>product_service2</module><module>product_service3</module><module>product_service_nacos</module><module>order_service</module><module>nacos_order_service</module><module>cloud-api-common</module><module>eureka_server</module><module>eureka_server2</module><module>cloud-import-test</module><module>consul_product_service</module><module>consul_order_service</module><module>openfeign_order_service</module><module>seata_feign_order_service</module><module>hystrix_order_service_ipconn</module><module>hystrix_order_service_rest</module><module>hystrix-turbine</module><module>sentinel_order_service_rest</module><module>sentinel_order_service_feign</module><module>api_gateway_server</module><module>stream_producer</module><module>stream_consumer</module><module>stream_consumer2</module><module>config_server</module><module>config_server2</module><module>nacos_config_client</module></modules><!-- 统一jar包管理 --><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target><junit.version>4.12</junit.version><log4j.version>1.2.17</log4j.version><lombok.version>1.16.18</lombok.version><mysql.version>5.1.47</mysql.version><druid.version>1.1.16</druid.version><mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version></properties><!-- 子模块继承之后,提供作用:锁定版本+子模块不用写groupId和version --><dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>Hoxton.SR1</version><type>pom</type><scope>import</scope></dependency><!-- springcloud alibaba --><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2.1.0.RELEASE</version><type>pom</type><scope>import</scope></dependency><dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>${druid.version}</version></dependency><dependency><groupId>org.mybatis.spring.boot</groupId><artifactId>mybatis-spring-boot-starter</artifactId><version>${mybatis.spring.boot.version}</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>${mysql.version}</version></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${junit.version}</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>${lombok.version}</version><optional>true</optional></dependency></dependencies></dependencyManagement><build><plugins><!-- maven 插件 --><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><fork>true</fork><addResources>true</addResources></configuration></plugin></plugins></build>
</project>

SpringCloud系列博客父工程xml依赖相关推荐

  1. SpringBoot实现代码生成器——基于SpringBoot和Vue的后台管理系统项目系列博客(十)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  2. SpringCloud学习记录(1)-父工程与子模块创建及子模块调用

    创建父工程,导入依赖 选择创建maven工程,步骤如下: 修改父工程的pom.xml,具体如下: <?xml version="1.0" encoding="UTF ...

  3. 实时推荐服务建设——基于Spark平台的协同过滤实时电影推荐系统项目系列博客(八)

    系列文章目录 初识推荐系统--基于Spark平台的协同过滤实时电影推荐系统项目系列博客(一) 利用用户行为数据--基于Spark平台的协同过滤实时电影推荐系统项目系列博客(二) 项目主要效果展示--基 ...

  4. mysql 查询 不用星号,MySQL Cookbook系列博客

    概述 <SQL.Cookbook>是迄今为止,笔者遇到过sql系列最全.案例最精简的一本书. 许多真实环境遇到的棘手问题,本书都提供了解决方案.许多面试的sql题目(无论是Oracle.M ...

  5. LINQ之路系列博客后记

    缘起 今年3月,我换了工作单位.后来多次收到公司的新人培训邮件,不过对此我并不感冒,说实话并不喜欢这种活动.印象中,新人培训无非是唠叨些公司的规章制度.侃述一下公司的光辉历史还有灿烂的未来发展等等.规 ...

  6. Django 系列博客(二)

    Django 系列博客(二) 前言 今天博客的内容为使用 Django 完成第一个 Django 页面,并进行一些简单页面的搭建和转跳. 命令行搭建 Django 项目 创建纯净虚拟环境 在上一篇博客 ...

  7. SpringBoot实现1对1、1对多、多对多关联查询——基于SpringBoot和Vue的后台管理系统项目系列博客(十八)

    系列文章目录 系统功能演示--基于SpringBoot和Vue的后台管理系统项目系列博客(一) Vue2安装并集成ElementUI--基于SpringBoot和Vue的后台管理系统项目系列博客(二) ...

  8. PX4代码学习系列博客(6)——offboard模式位置控制代码分析(之前转载过,这是第二次转载了)

    我刚刚发现这篇文章去年八月份的时候转载过一次了 https://blog.csdn.net/sinat_16643223/article/details/107874349 转载自:https://b ...

  9. 从单片机开发转向Linux开发系列博客五:Nand Flash根文件系统制作

    版本 作者 参与者 日期 备注 V1.0 wuya(微信号:wangwenxue1989) 2019/05/17 创建 1.引言 之前系列的文章介绍了如何编译Uboot.Kernel以及使用默认的ra ...

最新文章

  1. UIPageViewController教程
  2. 互联网协议 — FTP 文件传输协议
  3. GitHub 五万星登顶,命令行的艺术!
  4. 七十四、完成Vue项目城市详细页,并实现打包
  5. bzoj4448 SCOI2015 情报传递 message
  6. 渲染器跑分_碾压图灵43!NVIDIA安培第一个跑分震撼出炉
  7. ubuntu下使用vi是方向键变乱码 退格键不能使用的解决方法
  8. Alpha冲刺 - (6/10)
  9. 关于简历:怎样才叫熟悉/精通Linux?
  10. [第5天]nginx环境下404问题
  11. Windows2003 IIS上设置301定向,实现不带www域名跳转带www域名的方法
  12. 响应式编程笔记三:一个简单的HTTP服务器
  13. java设计单词英译汉小助手_基于java英汉互译词典设计课程设计.doc
  14. 体系建模系统软件:体系结构建模工具攻略
  15. android 逆向终极版,【首发】Eugenio改版最强OD(完美终结版)拥有众强大插件、足以秒杀所有强壳......
  16. abb变频器dp适配器说明书_PROFIBUS-DP与ABB变频器之间通讯设置步骤
  17. 向已经存在的Kubernetes集群中添加新的worker节点
  18. mysql语句批量更新数据库_sql 更新批量数据库语句
  19. 用户分析(AARRR)
  20. java 可重复map_map的键值可以重复吗

热门文章

  1. bootstrapTable表格分页后,处理逻辑后刷新跳回第一页,没留在当前页的解决办法
  2. Scrapy学习之报错ModuleNotFoundError: No module named 'win32api'
  3. TortoiseGit使用ssh-keygen生成的私钥
  4. Linux操作系统RedHat6.5安装
  5. mybatis动态表名,列名
  6. java 不定长参数实现原理
  7. linux系统下安装和配置redis(2021版)
  8. matplotlib绘图_手把手教你使用Matplotlib绘图实战
  9. 更高效地刷OJ——String常用方法(一)
  10. nginx总结(面试必看)