summaryrefslogtreecommitdiffstats
path: root/bpmn
diff options
context:
space:
mode:
authorSteve Smokowski <ss835w@att.com>2019-02-26 18:01:29 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-26 18:01:29 +0000
commitbf30a54577bf315ffdf71b7098c3528c6fddfa23 (patch)
treec6a961c580d27002bd492f4578b9cbcbdd8dd2a9 /bpmn
parent8892d0c61c8fb2dde1c6d900c9e8e51ce5db50a9 (diff)
parent115018c4153b83bc355e277eb830ef700b947f55 (diff)
Merge "changed to jdbcUrl and updated flyway for bpmn"
Diffstat (limited to 'bpmn')
-rw-r--r--bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml9
-rw-r--r--bpmn/mso-infrastructure-bpmn/src/test/resources/application-test.yaml2
2 files changed, 9 insertions, 2 deletions
diff --git a/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml b/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml
index d3d2c60a37..ee75ffa17d 100644
--- a/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml
+++ b/bpmn/mso-infrastructure-bpmn/src/main/resources/application.yaml
@@ -8,9 +8,16 @@ mso:
spring:
datasource:
driver-class-name: org.mariadb.jdbc.Driver
- url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn
+ 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}
http:
multipart:
enabled: false
diff --git a/bpmn/mso-infrastructure-bpmn/src/test/resources/application-test.yaml b/bpmn/mso-infrastructure-bpmn/src/test/resources/application-test.yaml
index 56a92cbd01..21ad485fdb 100644
--- a/bpmn/mso-infrastructure-bpmn/src/test/resources/application-test.yaml
+++ b/bpmn/mso-infrastructure-bpmn/src/test/resources/application-test.yaml
@@ -157,7 +157,7 @@ sniro:
headers.latestVersion: 2
spring:
datasource:
- url: jdbc:mariadb://localhost:3307/camundabpmn
+ jdbcUrl: jdbc:mariadb://localhost:3307/camundabpmn
username: root
password: password
driver-class-name: org.mariadb.jdbc.Driver