总父工程

POM
project
module

一、微服务Cloud整体聚合父工程Project

1、父工程步骤

1、NewProject
image.png
2、聚合总父工程名字
3、Maven选版本
4、工程名字
5、字符编码
image.png
6、注解生效激活
image.png
7、java编译版本选8
image.png
8、File Type过滤
image.png

二、父工程pom文件

一、父工程pom文件

1、
image.png
2、
image.png
3、

  1. <!-- 统一管理jar包版本 -->
  2. <properties>
  3. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  4. <maven.compiler.source>1.8</maven.compiler.source>
  5. <maven.compiler.target>1.8</maven.compiler.target>
  6. <junit.version>4.12</junit.version>
  7. <log4j.version>1.2.17</log4j.version>
  8. <lombok.version>1.16.18</lombok.version>
  9. <mysql.version>5.1.47</mysql.version>
  10. <druid.version>1.1.16</druid.version>
  11. <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version>
  12. </properties>
  13. <!-- 子模块继承之后,提供作用:锁定版本+子modlue不用写groupId和version -->
  14. <dependencyManagement>
  15. <dependencies>
  16. <!--spring boot 2.2.2-->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-dependencies</artifactId>
  20. <version>2.2.2.RELEASE</version>
  21. <type>pom</type>
  22. <scope>import</scope>
  23. </dependency>
  24. <!--spring cloud Hoxton.SR1-->
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-dependencies</artifactId>
  28. <version>Hoxton.SR1</version>
  29. <type>pom</type>
  30. <scope>import</scope>
  31. </dependency>
  32. <!--spring cloud alibaba 2.1.0.RELEASE-->
  33. <dependency>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  36. <version>2.1.0.RELEASE</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>${mysql.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid</artifactId>
  48. <version>${druid.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.mybatis.spring.boot</groupId>
  52. <artifactId>mybatis-spring-boot-starter</artifactId>
  53. <version>${mybatis.spring.boot.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <version>${junit.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>log4j</groupId>
  62. <artifactId>log4j</artifactId>
  63. <version>${log4j.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>${lombok.version}</version>
  69. <optional>true</optional>
  70. </dependency>
  71. </dependencies>
  72. </dependencyManagement>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <configuration>
  79. <fork>true</fork>
  80. <addResources>true</addResources>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>

二、Maven中的dependencyManagement和dependencies的区别

Maven中的dependencyManagement和dependencies的区别?

Maven使用dependencyManagement元素来提供一种管理依赖版本号的方式。
通常会在一个组织或者项目的最顶层的父POM中看到dependencyManagement元素。

使用pom.xml中的dependencyManagement元素能让所有在子项目中引用一个依赖而不用显示列出版本号。
Maven会沿着父子层向上走,直到找到一个拥有dependencyManagement元素的项目,然后它就会使用这个dependencyManagement元素的项目,然后它就会使用这个dependencyManagement元素中指定的版本号
image.png

就是:如果有多个子项目都引用同一样的依赖,则可以避免在每个使用的子项目里都声明一个版本号,这样想升级或切换到另一个版本时,只需在顶层父容器里更新,而不需要一个一个子项目的修改,另外如果某个子项目需要另一个版本,只需声明version版本。

dependencyManagement里只是声明依赖,并不实现引入,因此子项目需要显示的声明需要用的依赖。


三、Maven如何跳过单元测试

image.png

父工程创建完成执行mvn:install将父工程发布到仓库方便子工程继承