Skip to content

Commit 1214dec

Browse files
yrodieremarko-bekhta
authored andcommitted
HSEARCH-3277 Upgrade to Hibernate ORM 6.0.0.Beta3
1 parent 7f628b1 commit 1214dec

File tree

36 files changed

+546
-814
lines changed

36 files changed

+546
-814
lines changed

build/config/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@
6868
<skip>${maven.javadoc.skip}</skip>
6969
<artifactItems>
7070
<artifactItem>
71-
<groupId>org.hibernate</groupId>
72-
<artifactId>hibernate-core-jakarta</artifactId>
71+
<groupId>org.hibernate.orm</groupId>
72+
<artifactId>hibernate-core</artifactId>
7373
<classifier>javadoc</classifier>
7474
<type>jar</type>
75-
<version>${version.org.hibernate}</version>
75+
<version>${version.org.hibernate.orm}</version>
7676
<outputDirectory>${tmpdir.dependencies-javadoc-packagelists}/hibernate-core</outputDirectory>
7777
</artifactItem>
7878
<artifactItem>

build/parents/public/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
-->
7272
<offlineLinks>
7373
<offlineLink>
74-
<url>${javadoc.org.hibernate.url}</url>
74+
<url>${javadoc.org.hibernate.orm.url}</url>
7575
<location>${javadoc.packagelists.directory}/hibernate-core</location>
7676
</offlineLink>
7777
<offlineLink>

documentation/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@
314314
<hibernateSearchMigrationGuidesIndexUrl>https://hibernate.org/search/documentation/migrate/</hibernateSearchMigrationGuidesIndexUrl>
315315
<hibernateCommunityUrl>https://hibernate.org/community</hibernateCommunityUrl>
316316
<hibernateBlogUrl>https://in.relation.to/</hibernateBlogUrl>
317-
<hibernateVersion>${version.org.hibernate}</hibernateVersion>
318-
<hibernateDocUrl>${documentation.org.hibernate.url}</hibernateDocUrl>
317+
<hibernateVersion>${version.org.hibernate.orm}</hibernateVersion>
318+
<hibernateDocUrl>${documentation.org.hibernate.orm.url}</hibernateDocUrl>
319319
<javaeeUrl>https://www.oracle.com/java/technologies/java-ee-glance.html</javaeeUrl>
320320
<hibernateOrm6DocUrl>${documentation.org.hibernate.orm.url}</hibernateOrm6DocUrl>
321321
<hibernateOrm6Version>${version.org.hibernate.orm}</hibernateOrm6Version>

integrationtest/mapper/orm-envers/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<scope>test</scope>
2424
</dependency>
2525
<dependency>
26-
<groupId>org.hibernate</groupId>
27-
<artifactId>hibernate-envers-jakarta</artifactId>
26+
<groupId>org.hibernate.orm</groupId>
27+
<artifactId>hibernate-envers</artifactId>
2828
<scope>test</scope>
2929
</dependency>
3030
<dependency>

integrationtest/mapper/orm-realbackend/src/test/java/org/hibernate/search/integrationtest/mapper/orm/realbackend/limitations/ConcurrentEmbeddedUpdateLimitationIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.hibernate.Session;
2626
import org.hibernate.SessionFactory;
2727
import org.hibernate.Transaction;
28-
import org.hibernate.dialect.CockroachDB192Dialect;
28+
import org.hibernate.dialect.CockroachDialect;
2929
import org.hibernate.dialect.SQLServerDialect;
3030
import org.hibernate.search.integrationtest.mapper.orm.realbackend.testsupport.BackendConfigurations;
3131
import org.hibernate.search.mapper.orm.Search;
@@ -64,7 +64,7 @@ public void indexingStrategySession() throws Throwable {
6464
.skipTestForDialect( SQLServerDialect.class,
6565
"The execution could provoke a failure caused by a deadlock on SQLServer, "
6666
+ "which will abort our requests and will make the tests fail." )
67-
.skipTestForDialect( CockroachDB192Dialect.class,
67+
.skipTestForDialect( CockroachDialect.class,
6868
"The execution could provoke a 'failed preemptive refresh due to a conflict' on CockroachDB,"
6969
+ " which will abort our requests and will make the tests fail." )
7070
.setup( Book.class, Author.class, BookEdition.class );

integrationtest/mapper/orm-spring/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@
5959
<groupId>org.springframework.boot</groupId>
6060
<artifactId>spring-boot-starter-data-jpa</artifactId>
6161
<exclusions>
62+
<!-- Using a newer version of Hibernate ORM, with a different groupID -->
63+
<exclusion>
64+
<groupId>org.hibernate</groupId>
65+
<artifactId>hibernate-core</artifactId>
66+
</exclusion>
6267
<!-- Using JBoss Logging -->
6368
<exclusion>
6469
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)