在Spring Boot中自定义依赖版本

时间:2019-03-19 09:10:41

标签: spring spring-boot quartz-scheduler

我想将 Quartz 2依赖项与spring 1.5.2.RELEASE

一起使用

我只想覆盖父级spring pom依赖项,而仅是石英依赖项。

我试图这样做:

<properties>
    <quartz.version>2.3.0</quartz.version>
</properties>


<parent> 
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.2.RELEASE</version>
</parent>


<dependencies>
 <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-quartz</artifactId>
    </dependency>
</dependencies>
  

错误:    项目构建错误:缺少org.springframework.boot:spring-boot-starter-quartz:jar的'dependencies.dependency.version'。

0 个答案:

没有答案