|
11 | 11 | import java.util.HashMap;
|
12 | 12 | import java.util.Map;
|
13 | 13 | import java.util.Optional;
|
14 |
| -import java.util.Set; |
| 14 | +import javax.persistence.spi.PersistenceUnitInfo; |
15 | 15 |
|
16 |
| -import org.hibernate.SessionFactoryObserver; |
17 |
| -import org.hibernate.boot.registry.StandardServiceRegistry; |
18 |
| -import org.hibernate.boot.spi.MetadataImplementor; |
19 | 16 | import org.hibernate.cfg.AvailableSettings;
|
20 | 17 | import org.hibernate.cfg.Environment;
|
21 |
| -import org.hibernate.engine.spi.SessionFactoryImplementor; |
22 | 18 | import org.hibernate.internal.util.ReflectHelper;
|
23 | 19 | import org.hibernate.jpa.boot.internal.PersistenceUnitInfoDescriptor;
|
24 | 20 | import org.hibernate.jpa.boot.spi.Bootstrap;
|
25 | 21 | import org.hibernate.jpa.boot.spi.EntityManagerFactoryBuilder;
|
26 | 22 | import org.hibernate.tool.schema.Action;
|
27 |
| -import org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator; |
28 |
| -import org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.ActionGrouping; |
29 | 23 |
|
30 | 24 | import org.hibernate.testing.jdbc.SharedDriverManagerConnectionProviderImpl;
|
31 | 25 | import org.hibernate.testing.orm.domain.DomainModelDescriptor;
|
|
39 | 33 |
|
40 | 34 | import org.jboss.logging.Logger;
|
41 | 35 |
|
42 |
| -import javax.persistence.spi.PersistenceUnitInfo; |
43 |
| - |
44 | 36 | /**
|
45 | 37 | * hibernate-testing implementation of a few JUnit5 contracts to support SessionFactory-based testing,
|
46 | 38 | * including argument injection (or see {@link SessionFactoryScopeAware})
|
@@ -89,7 +81,6 @@ public static EntityManagerFactoryScope findEntityManagerFactoryScope(
|
89 | 81 | // JpaCompliance
|
90 | 82 | pui.getProperties().put( AvailableSettings.JPA_QUERY_COMPLIANCE, emfAnn.queryComplianceEnabled() );
|
91 | 83 | pui.getProperties().put( AvailableSettings.JPA_TRANSACTION_COMPLIANCE, emfAnn.transactionComplianceEnabled() );
|
92 |
| - pui.getProperties().put( AvailableSettings.JPA_LIST_COMPLIANCE, emfAnn.listMappingComplianceEnabled() ); |
93 | 84 | pui.getProperties().put( AvailableSettings.JPA_CLOSED_COMPLIANCE, emfAnn.closedComplianceEnabled() );
|
94 | 85 | pui.getProperties().put( AvailableSettings.JPA_PROXY_COMPLIANCE, emfAnn.proxyComplianceEnabled() );
|
95 | 86 | pui.getProperties().put( AvailableSettings.JPA_CACHING_COMPLIANCE, emfAnn.cacheComplianceEnabled() );
|
|
0 commit comments