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项目创建父级依赖的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot子模块相互依赖打包

Spring Boot的简单入门

RecyclerView 内容未使用片段父级的全宽

SpringBoot整合mybatis-plus+druid组件,实现增删改查

idea编写第一个springboot程序

具有自定义父级的 Spring Boot 父级 pom