I want to use Quartz 2 dependency with spring 1.5.2.RELEASE
There I want to override the parent spring pom dependency for the quartz dependency only.
I tried to do this :
<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>
Error: Project build error: 'dependencies.dependency.version' for org.springframework.boot:spring-boot-starter-quartz:jar is missing.
