Polishing.

Remove warnings.

See #3592
This commit is contained in:
Mark Paluch
2024-10-29 10:22:04 +01:00
parent 914f4af010
commit a75d7b0faa
2 changed files with 7 additions and 1 deletions

View File

@@ -58,7 +58,6 @@ public class Config {
public AbstractEntityManagerFactoryBean entityManagerFactory() throws SQLException {
HibernateJpaVendorAdapter jpaVendorAdapter = new HibernateJpaVendorAdapter();
jpaVendorAdapter.setDatabase(Database.H2);
jpaVendorAdapter.setGenerateDdl(true);
LocalContainerEntityManagerFactoryBean bean = new LocalContainerEntityManagerFactoryBean();

View File

@@ -46,6 +46,13 @@
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>