Revert packaging changes of performance module.

...and remove duplicate properties entry.

See: #3309
This commit is contained in:
Christoph Strobl
2024-08-22 08:55:58 +02:00
parent 52e6aef4a7
commit 6ecb45fe04
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
<artifactId>spring-data-jpa-performance</artifactId>
<packaging>pom</packaging>
<packaging>jar</packaging>
<name>Spring Data JPA - Performance</name>
<description>Benchmark build for Spring Data JPA</description>

View File

@@ -106,7 +106,6 @@ public class RepositoryFinderTests {
Map<String, String> properties = new HashMap<>();
properties.put("jakarta.persistence.jdbc.url", "jdbc:h2:mem:test");
properties.put("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
properties.put("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
properties.put("hibernate.hbm2ddl.auto", "update");
EntityManagerFactory entityManagerFactory = Persistence.createEntityManagerFactory("benchmark", properties);