diff options
author | 2025-01-16 14:04:14 +0000 | |
---|---|---|
committer | 2025-01-16 14:04:36 +0000 | |
commit | 03eaface60f2e7c82bb149a988fdeb94457ce431 (patch) | |
tree | f6dd69deda87ebfc4d763da8c6b7121216b02425 /runtime-acm/src | |
parent | a57452cf03010acee39542550db00d428a300863 (diff) |
Remove MariaDB support
- change configurations to use PostgreSQL as default
Issue-ID: POLICY-5196
Change-Id: I65987e293b06460f7f7ef55edcd0d75f15533cc8
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'runtime-acm/src')
-rw-r--r-- | runtime-acm/src/main/resources/application.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime-acm/src/main/resources/application.yaml b/runtime-acm/src/main/resources/application.yaml index bca01ace8..1bc529a74 100644 --- a/runtime-acm/src/main/resources/application.yaml +++ b/runtime-acm/src/main/resources/application.yaml @@ -9,8 +9,8 @@ spring: converters: preferred-json-mapper: gson datasource: - url: jdbc:mariadb://${mariadb.host:localhost}:${mariadb.port:3306}/clampacm - driverClassName: org.mariadb.jdbc.Driver + url: jdbc:postgresql://${postgresql.host:localhost}:${postgresql.port:5432}/clampacm + driverClassName: org.postgresql.Driver username: policy password: P01icY hikari: |