码迷,mamicode.com
首页 > 编程语言 > 详细

在没有父POM的情况下使用Spring Boot

时间:2020-01-14 09:29:29      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:amp   ima   nta   csdn   asc   eset   配置   程序猿   程序   

不是每个人都喜欢继承spring-boot-starter-parent POM。 您可能拥有自己需要使用的公司标准父级,或者您可能更愿意明确声明所有Maven配置。

如果您不想使用spring-boot-starter-parent,您仍然可以通过使用scope = import依赖项来保持依赖项管理(但不是插件管理)的好处:

springboot

<dependencyManagement>
  <dependencies>
   <dependency>
      <!-- Import dependency management from Spring Boot -->
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-dependencies</artifactId>
     <version>1.5.10.RELEASE</version>
     <type>pom</type>
     <scope>import</scope>
   </dependency>
  </dependencies>
</dependencyManagement>

 

技术图片

springcloud

<dependencyManagement>
  <dependencies>
       <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.SR1</version>
            <type>pom</type>
            <scope>import</scope>
            </dependency>
   </dependencies>
</dependencyManagement>

 

技术图片

更改Java版本

<properties>
    <java.version>1.8</java.version>
</properties>

 

技术图片

                                       技术图片技术图片?

                                                                       JAVA程序猿成长之路

                          分享资源,记录程序猿成长点滴。专注于Java,Spring,SpringBoot,SpringCloud,分布式,微服务。

在没有父POM的情况下使用Spring Boot

标签:amp   ima   nta   csdn   asc   eset   配置   程序猿   程序   

原文地址:https://www.cnblogs.com/niugang0920/p/12190268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!