标签:ram image pen 依赖 分层 inline framework ref block
01 添加依赖并打包
02 添加本地jar包并打包
03 将本地jar包导入本地maven库
04 springboot打包jar和war
05 Maven统一版本管理
通常情况下,我们会将一个项目分层使用,今天我们是讲解MAVEN使用,我不负责分层,一切从简
A项目,有BC两个子模块,B引用C
package改成pom
新建B、C两个子模块
在A的POM中,新建<dependencyManagement></dependencyManagement>标签对
如果是SpringBoot的统一版本写法
<!-- SpringBoot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
子模块中使用,子模块中就不需要<dependencyManagement></dependencyManagement>标签了
直接使用<dependencies></dependencies>
打包就略了,看之前的博客
标签:ram image pen 依赖 分层 inline framework ref block
原文地址:https://www.cnblogs.com/zjwno1/p/13206583.html