File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
src/test/java/org/springframework/data/jpa Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 35
35
<hibernate-62 >6.2.22.Final</hibernate-62 >
36
36
<hsqldb >2.7.1</hsqldb >
37
37
<h2 >2.2.220</h2 >
38
+ <jakarta-persistence-api >3.1.0</jakarta-persistence-api >
38
39
<jsqlparser >4.8</jsqlparser >
39
40
<mysql-connector-java >8.0.33</mysql-connector-java >
40
41
<postgresql >42.6.0</postgresql >
75
76
<properties >
76
77
<hibernate >${hibernate-62}</hibernate >
77
78
</properties >
78
- <dependencies >
79
- <dependency >
80
- <groupId >jakarta.persistence</groupId >
81
- <artifactId >jakarta.persistence-api</artifactId >
82
- </dependency >
83
- </dependencies >
84
79
</profile >
85
80
<profile >
86
81
<id >all-dbs</id >
Original file line number Diff line number Diff line change 345
345
<artifactId >hibernate-jpamodelgen</artifactId >
346
346
<version >${hibernate} </version >
347
347
</path >
348
+ <path >
349
+ <groupId >jakarta.persistence</groupId >
350
+ <artifactId >jakarta.persistence-api</artifactId >
351
+ <version >${jakarta-persistence-api} </version >
352
+ </path >
348
353
</annotationProcessorPaths >
349
354
</configuration >
350
355
</plugin >
Original file line number Diff line number Diff line change 23
23
import org .antlr .v4 .runtime .RuntimeMetaData ;
24
24
import org .hibernate .grammars .hql .HqlParser ;
25
25
import org .junit .jupiter .api .Test ;
26
-
27
26
import org .springframework .asm .ClassReader ;
28
27
import org .springframework .asm .ClassVisitor ;
29
28
import org .springframework .asm .MethodVisitor ;
30
29
import org .springframework .asm .Opcodes ;
30
+ import org .springframework .data .jpa .util .DisabledOnHibernate62 ;
31
31
import org .springframework .lang .Nullable ;
32
32
33
33
/**
41
41
class AntlrVersionTests {
42
42
43
43
@ Test
44
+ @ DisabledOnHibernate62
44
45
void antlrVersionConvergence () throws Exception {
45
46
46
47
ClassReader reader = new ClassReader (HqlParser .class .getName ());
You can’t perform that action at this time.
0 commit comments