Provide dependency management for Querydsl
Closes gh-6777 See gh-6399
This commit is contained in:
parent
3814e509a3
commit
aa46af5591
|
@ -132,6 +132,7 @@
|
||||||
<nekohtml.version>1.9.22</nekohtml.version>
|
<nekohtml.version>1.9.22</nekohtml.version>
|
||||||
<neo4j-ogm.version>2.0.4</neo4j-ogm.version>
|
<neo4j-ogm.version>2.0.4</neo4j-ogm.version>
|
||||||
<postgresql.version>9.4.1209.jre7</postgresql.version>
|
<postgresql.version>9.4.1209.jre7</postgresql.version>
|
||||||
|
<querydsl.version>4.1.3</querydsl.version>
|
||||||
<reactor.version>2.0.8.RELEASE</reactor.version>
|
<reactor.version>2.0.8.RELEASE</reactor.version>
|
||||||
<reactor-spring.version>2.0.7.RELEASE</reactor-spring.version>
|
<reactor-spring.version>2.0.7.RELEASE</reactor-spring.version>
|
||||||
<selenium.version>2.53.1</selenium.version>
|
<selenium.version>2.53.1</selenium.version>
|
||||||
|
@ -768,6 +769,27 @@
|
||||||
<artifactId>json-path-assert</artifactId>
|
<artifactId>json-path-assert</artifactId>
|
||||||
<version>${json-path.version}</version>
|
<version>${json-path.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.querydsl</groupId>
|
||||||
|
<artifactId>querydsl-collections</artifactId>
|
||||||
|
<version>${querydsl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.querydsl</groupId>
|
||||||
|
<artifactId>querydsl-jpa</artifactId>
|
||||||
|
<version>${querydsl.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.querydsl</groupId>
|
||||||
|
<artifactId>querydsl-mongodb</artifactId>
|
||||||
|
<version>${querydsl.version}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.mongodb</groupId>
|
||||||
|
<artifactId>mongo-java-driver</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.samskivert</groupId>
|
<groupId>com.samskivert</groupId>
|
||||||
<artifactId>jmustache</artifactId>
|
<artifactId>jmustache</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue