springboot项目创建父级依赖
Posted 求知若渴的蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目创建父级依赖相关的知识,希望对你有一定的参考价值。
第一步创建父级工程
*注意父级工程这块一定要选择pom
选择父级的pom文件
<!--父工程对版本进行一个管理 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- jdk版本进行限制 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
第二创建父级工程的module 选择父级项目 创建module
以上是关于springboot项目创建父级依赖的主要内容,如果未能解决你的问题,请参考以下文章