I'm trying to use Spring's JDBC Data Extension with QueryDSL 4.x, but the last Spring Data snapshot still refers to QueryDSL 3.x as a dependency, which is a problem because QueryDSL changed the package (removing mysema) from 3.x to 4 .x.
Is there a way to make this Spring data extension work with QueryDSL 4.x without causing a potential conflict between the two versions of querydsl by adding the necessary dependencies for 3.x?
My Spring dependency of jdbc ext data:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-oracle</artifactId>
<version>1.2.0.BUILD-SNAPSHOT</version>
</dependency>
source
share