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 3535 <hibernate-62 >6.2.22.Final</hibernate-62 >
3636 <hsqldb >2.7.1</hsqldb >
3737 <h2 >2.2.220</h2 >
38+ <jakarta-persistence-api >3.1.0</jakarta-persistence-api >
3839 <jsqlparser >4.8</jsqlparser >
3940 <mysql-connector-java >8.0.33</mysql-connector-java >
4041 <postgresql >42.6.0</postgresql >
7576 <properties >
7677 <hibernate >${hibernate-62}</hibernate >
7778 </properties >
78- <dependencies >
79- <dependency >
80- <groupId >jakarta.persistence</groupId >
81- <artifactId >jakarta.persistence-api</artifactId >
82- </dependency >
83- </dependencies >
8479 </profile >
8580 <profile >
8681 <id >all-dbs</id >
Original file line number Diff line number Diff line change 345345 <artifactId >hibernate-jpamodelgen</artifactId >
346346 <version >${hibernate} </version >
347347 </path >
348+ <path >
349+ <groupId >jakarta.persistence</groupId >
350+ <artifactId >jakarta.persistence-api</artifactId >
351+ <version >${jakarta-persistence-api} </version >
352+ </path >
348353 </annotationProcessorPaths >
349354 </configuration >
350355 </plugin >
Original file line number Diff line number Diff line change 2323import org .antlr .v4 .runtime .RuntimeMetaData ;
2424import org .hibernate .grammars .hql .HqlParser ;
2525import org .junit .jupiter .api .Test ;
26-
2726import org .springframework .asm .ClassReader ;
2827import org .springframework .asm .ClassVisitor ;
2928import org .springframework .asm .MethodVisitor ;
3029import org .springframework .asm .Opcodes ;
30+ import org .springframework .data .jpa .util .DisabledOnHibernate62 ;
3131import org .springframework .lang .Nullable ;
3232
3333/**
4141class AntlrVersionTests {
4242
4343 @ Test
44+ @ DisabledOnHibernate62
4445 void antlrVersionConvergence () throws Exception {
4546
4647 ClassReader reader = new ClassReader (HqlParser .class .getName ());
You can’t perform that action at this time.
0 commit comments