diff --git a/persistence-modules/spring-data-jpa-crud/pom.xml b/persistence-modules/spring-data-jpa-crud/pom.xml
index 4afb75d737..16ee74aa62 100644
--- a/persistence-modules/spring-data-jpa-crud/pom.xml
+++ b/persistence-modules/spring-data-jpa-crud/pom.xml
@@ -33,11 +33,6 @@
com.h2database
h2
-
- mysql
- mysql-connector-java
- runtime
-
net.ttddyy
datasource-proxy
diff --git a/persistence-modules/spring-data-jpa-crud/src/main/resources/application.properties b/persistence-modules/spring-data-jpa-crud/src/main/resources/application.properties
index a11e224a1b..a3a7bd42f7 100644
--- a/persistence-modules/spring-data-jpa-crud/src/main/resources/application.properties
+++ b/persistence-modules/spring-data-jpa-crud/src/main/resources/application.properties
@@ -13,8 +13,10 @@ spring.jpa.properties.hibernate.generate_statistics=true
#spring.jpa.properties.javax.persistence.schema-generation.scripts.create-source=metadata
#spring.jpa.properties.hibernate.format_sql=true
-spring.datasource.url=jdbc:mysql://localhost:3306/db_products?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
-spring.datasource.username=root
-spring.datasource.password=root
+# spring.datasource.url=jdbc:mysql://localhost:3306/db_products?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
+# spring.datasource.username=root
+# spring.datasource.password=root
-spring.jpa.hibernate.ddl-auto= update
\ No newline at end of file
+# spring.jpa.hibernate.ddl-auto= update
+
+spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
\ No newline at end of file