Skip to content

Commit e13967f

Browse files
committed
Merge branch 'querydsl-7.0' of github.com:OpenFeign/querydsl
2 parents b37f00b + eb4b8a1 commit e13967f

File tree

6 files changed

+46
-6
lines changed

6 files changed

+46
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
name: 'Build and test examples'
199199
command: |
200200
cd querydsl-examples/querydsl-example-ksp-codegen
201-
./gradlew --no-daemon --console=plain
201+
./gradlew --no-daemon --console=plain --info --stacktrace test
202202
- run:
203203
name: 'Save test results'
204204
command: |

pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@
128128
<r2dbc.version>1.0.0.RELEASE</r2dbc.version>
129129

130130
<!-- JPA deps -->
131-
<hibernate.version>7.0.0.Beta1</hibernate.version>
132-
<hibernate.validator.version>8.0.2.Final</hibernate.validator.version>
133-
<eclipselink.version>5.0.0-B07</eclipselink.version>
131+
<hibernate.version>7.0.0.Final</hibernate.version>
132+
<hibernate.validator.version>9.0.0.Final</hibernate.validator.version>
133+
<eclipselink.version>5.0.0-B08</eclipselink.version>
134134
<jpa.version>3.2.0</jpa.version>
135135
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
136136

@@ -157,6 +157,7 @@
157157
<osgi.import.package.root>*</osgi.import.package.root>
158158
<osgi.import.package>${osgi.import.package.root}</osgi.import.package>
159159

160+
<jacocoArgLine></jacocoArgLine>
160161
<jacoco.propertyName>jacocoArgLine</jacoco.propertyName>
161162
</properties>
162163

querydsl-examples/querydsl-example-jpa-guice/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@
5353
</exclusion>
5454
</exclusions>
5555
</dependency>
56+
<dependency>
57+
<groupId>org.hibernate.orm</groupId>
58+
<artifactId>hibernate-scan-jandex</artifactId>
59+
<version>${hibernate.version}</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.glassfish.expressly</groupId>
63+
<artifactId>expressly</artifactId>
64+
<version>5.0.0</version>
65+
</dependency>
5666
<dependency>
5767
<groupId>org.hibernate.orm</groupId>
5868
<artifactId>hibernate-c3p0</artifactId>

querydsl-libraries/querydsl-jpa/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
<scope>provided</scope>
4343
<optional>true</optional>
4444
</dependency>
45+
<dependency>
46+
<groupId>org.hibernate.orm</groupId>
47+
<artifactId>hibernate-scan-jandex</artifactId>
48+
<version>${hibernate.version}</version>
49+
<scope>provided</scope>
50+
<optional>true</optional>
51+
</dependency>
4552

4653
<dependency>
4754
<groupId>jakarta.persistence</groupId>
@@ -93,6 +100,13 @@
93100
</exclusion>
94101
</exclusions>
95102
</dependency>
103+
<dependency>
104+
<groupId>org.glassfish.expressly</groupId>
105+
<artifactId>expressly</artifactId>
106+
<version>5.0.0</version>
107+
<scope>provided</scope>
108+
<optional>true</optional>
109+
</dependency>
96110

97111
<dependency>
98112
<groupId>org.postgresql</groupId>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.querydsl.apt.domain;
22

33
import jakarta.persistence.Entity;
4-
import org.hibernate.envers.DefaultRevisionEntity;
54
import org.hibernate.envers.RevisionEntity;
5+
import org.hibernate.envers.RevisionMapping;
66

77
@Entity
88
@RevisionEntity
9-
public class Revision extends DefaultRevisionEntity {
9+
public class Revision extends RevisionMapping {
1010

1111
private static final long serialVersionUID = 4587663183059799464L;
1212
}

querydsl-tooling/querydsl-jpa-codegen/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
</exclusion>
3131
</exclusions>
3232
</dependency>
33+
<dependency>
34+
<groupId>org.hibernate.orm</groupId>
35+
<artifactId>hibernate-scan-jandex</artifactId>
36+
<version>${hibernate.version}</version>
37+
<scope>provided</scope>
38+
<optional>true</optional>
39+
</dependency>
3340
<dependency>
3441
<groupId>org.hibernate.validator</groupId>
3542
<artifactId>hibernate-validator</artifactId>
@@ -43,6 +50,14 @@
4350
</exclusions>
4451
</dependency>
4552

53+
<dependency>
54+
<groupId>org.glassfish.expressly</groupId>
55+
<artifactId>expressly</artifactId>
56+
<version>5.0.0</version>
57+
<scope>provided</scope>
58+
<optional>true</optional>
59+
</dependency>
60+
4661
<dependency>
4762
<groupId>jakarta.persistence</groupId>
4863
<artifactId>jakarta.persistence-api</artifactId>

0 commit comments

Comments
 (0)