Skip to content

Commit

Permalink
Upgrade to Hibernate Reactive 2.0.0.Beta2
Browse files Browse the repository at this point in the history
(cherry picked from commit 9ebc609)
  • Loading branch information
Sanne authored and gsmet committed Apr 18, 2023
1 parent f4d35a7 commit 5821c30
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 56 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<hibernate-orm.version>6.2.0.Final</hibernate-orm.version> <!-- When updating, align bytebuddy.version to Hibernate needs as well (just below): -->
<bytebuddy.version>1.12.18</bytebuddy.version> <!-- Version controlled by Hibernate ORM's needs -->
<hibernate-commons-annotations.version>6.0.6.Final</hibernate-commons-annotations.version> <!-- version controlled by Hibernate ORM -->
<hibernate-reactive.version>2.0.0.Beta1</hibernate-reactive.version>
<hibernate-reactive.version>2.0.0.Beta2</hibernate-reactive.version>
<hibernate-validator.version>8.0.0.Final</hibernate-validator.version>
<hibernate-search.version>6.1.7.Final</hibernate-search.version>
<narayana.version>6.0.0.Final</narayana.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
import io.quarkus.hibernate.orm.runtime.service.QuarkusImportSqlCommandExtractorInitiator;
import io.quarkus.hibernate.orm.runtime.service.QuarkusMutableIdentifierGeneratorFactoryInitiator;
import io.quarkus.hibernate.orm.runtime.service.QuarkusRegionFactoryInitiator;
import io.quarkus.hibernate.orm.runtime.service.QuarkusStaticInitDialectFactoryInitiator;
import io.quarkus.hibernate.orm.runtime.service.StandardHibernateORMInitiatorListProvider;
import io.quarkus.hibernate.reactive.runtime.customized.QuarkusNoJdbcConnectionProviderInitiator;
import io.quarkus.hibernate.reactive.runtime.customized.QuarkusReactiveDialectFactoryInitiator;

/**
* Defines the initial list of StandardServiceInitiator instances used to initialize the
Expand Down Expand Up @@ -86,8 +86,8 @@ public List<StandardServiceInitiator<?>> initialInitiatorList() {
serviceInitiators.add(MultiTenantConnectionProviderInitiator.INSTANCE);
serviceInitiators.add(DialectResolverInitiator.INSTANCE);

// Custom Quarkus V Reactive implementation !
serviceInitiators.add(QuarkusReactiveDialectFactoryInitiator.INSTANCE);
// Custom Quarkus implementation !
serviceInitiators.add(QuarkusStaticInitDialectFactoryInitiator.INSTANCE);

// Default implementation
serviceInitiators.add(BatchBuilderInitiator.INSTANCE);
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 5821c30

Please sign in to comment.