From a083e7066c8eaf17de2d322751c98e6e30419947 Mon Sep 17 00:00:00 2001 From: "Kalkere Ramesh, Sharan (sk720x)" Date: Tue, 26 Feb 2019 15:59:30 -0500 Subject: removed flyway from bpmn base yaml Fix startup of catalog, request, bpmn and openstack Change-Id: I8e8222e410da58a62beed8cb184c90ebe73aea6c Issue-ID: SO-1558 Signed-off-by: Kalkere Ramesh, Sharan (sk720x) --- bpmn/mso-infrastructure-bpmn/pom.xml | 4 ++++ .../src/main/resources/application.yaml | 11 ++--------- 2 files changed, 6 insertions(+), 9 deletions(-) (limited to 'bpmn') diff --git a/bpmn/mso-infrastructure-bpmn/pom.xml b/bpmn/mso-infrastructure-bpmn/pom.xml index fceb1812ba..6f0b1f6fc9 100644 --- a/bpmn/mso-infrastructure-bpmn/pom.xml +++ b/bpmn/mso-infrastructure-bpmn/pom.xml @@ -183,6 +183,10 @@ true + + org.springframework.boot + spring-boot-starter-jdbc + org.springframework.boot spring-boot-starter-test diff --git a/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml b/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml index ee75ffa17d..18b94e725a 100644 --- a/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml +++ b/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml @@ -9,15 +9,8 @@ spring: datasource: driver-class-name: org.mariadb.jdbc.Driver jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn - username: ${DB_USERNAME} - password: ${DB_PASSWORD} - flyway: - baselineOnMigrate: true - outOfOrder: true - table: FLYWAY_SCHEMA_HISTORY - url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn - user: ${DB_ADMIN_USERNAME} - password: ${DB_ADMIN_PASSWORD} + username: ${DB_ADMIN_USERNAME} + password: ${DB_ADMIN_PASSWORD} http: multipart: enabled: false -- cgit 1.2.3-korg