# # Copyright (c) 2015 Bosch Software Innovations GmbH and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # spring.main.allow-bean-definition-overriding=true ### JPA / Datasource - START spring.jpa.database=H2 spring.jpa.show-sql=false spring.datasource.url=jdbc:h2:mem:testdb;MODE=MySQL; # Logging spring.datasource.eclipselink.logging.logger=JavaLogger spring.jpa.properties.eclipselink.logging.level=off # Cluster aware spring.datasource.eclipselink.query-results-cache=false spring.datasource.eclipselink.cache.shared.default=false # Flyway DDL spring.flyway.enabled=true spring.flyway.init-on-migrate=true spring.flyway.clean-disabled=true spring.flyway.sql-migration-suffixes=${spring.jpa.database}.sql spring.flyway.table=schema_version ### JPA / Datasource - END