Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Integrates with Spring Data, Spring Data REST and Apache Solr</description>
<commons-text.version>1.11.0</commons-text.version>
<jakarta-persistence-api.version>3.1.0</jakarta-persistence-api.version>
<hibernate.version>5.6.15.Final</hibernate.version>
<hibernate-orm.version>6.1.7.Final</hibernate-orm.version>
<hibernate-orm.version>6.4.4.Final</hibernate-orm.version>
<solr-solrj.version>9.5.0</solr-solrj.version>
<elasticsearch-rest-high-level-client.version>7.17.18</elasticsearch-rest-high-level-client.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,6 @@ public LocalContainerEntityManagerFactoryBean entityManagerFactory(DataSource da
factory.setPackagesToScan(getClass().getPackage().getName());
factory.setDataSource(dataSource);

factory.setJpaVendorAdapter(vendorAdapter);
HashMap<String, Object> properties = new HashMap<>();
properties.put("hibernate.dialect","org.hibernate.dialect.MySQL55Dialect");
factory.setJpaPropertyMap(properties);

return factory;
}

Expand Down