2016-05-12 11:58:16 +02:00
|
|
|
#
|
|
|
|
|
# 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
|
|
|
|
|
#
|
|
|
|
|
|
2020-03-03 11:01:31 +03:00
|
|
|
# This profile adds basic configurations for a MySQL DB usage.
|
2016-05-13 09:30:22 +02:00
|
|
|
# Keep in mind that you need the MariaDB driver in your classpath on compile.
|
2019-06-18 15:29:15 +02:00
|
|
|
# see https://www.eclipse.org/hawkbit/guides/runhawkbit/
|
2016-05-12 11:58:16 +02:00
|
|
|
|
|
|
|
|
spring.jpa.database=MYSQL
|
|
|
|
|
spring.datasource.url=jdbc:mysql://localhost:3306/hawkbit
|
|
|
|
|
spring.datasource.username=root
|
|
|
|
|
spring.datasource.password=
|
|
|
|
|
spring.datasource.driverClassName=org.mariadb.jdbc.Driver
|