File tree Expand file tree Collapse file tree 6 files changed +46
-6
lines changed
querydsl-examples/querydsl-example-jpa-guice
querydsl-libraries/querydsl-jpa
querydsl-apt/src/test/java/com/querydsl/apt/domain Expand file tree Collapse file tree 6 files changed +46
-6
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 11package com .querydsl .apt .domain ;
22
33import jakarta .persistence .Entity ;
4- import org .hibernate .envers .DefaultRevisionEntity ;
54import 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}
Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments