不使用spring-boot-starter-parent进行依赖的版本管理

spring-boot-starter-parent 提供了Dependency Management 进行项目依赖的版本管理,默认的资源过滤和插件配置。

但是,当需要将其他项目作为parent 的时候,同时又希望对项目依赖版本进行统一的管理时,可以使用 dependencyManagement 来实现。

如下所示:


    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    
    com.study
    SpringBootTest-1
    0.0.1-SNAPSHOT
    RequestBodyTest
    Demo project for Spring Boot

    
        1.8
    

    
    
      
       
       org.springframework.boot
        spring-boot-dependencies
        1.5.10.RELEASE
        pom
        import
       
      
    
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootTest1Application {

    public static void main(String[] args) {
        SpringApplication.run(SpringBootTest1Application.class, args);
    }

}
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @GetMapping("/hello")
    public String sayHi() {
    return "Hello World";
    }
}

 注意此时,

spring-boot-maven-plugin 打出来的jar包,并不包含main-class,需要配置 goal 以使打出来的Jar 可以运行。

 

你可能感兴趣的:(不使用spring-boot-starter-parent进行依赖的版本管理)