From 8a22a992705d5a2324ff115fc5a7f2ccebccad3b Mon Sep 17 00:00:00 2001 From: rikcarve Date: Thu, 1 Aug 2019 14:42:47 +0200 Subject: [PATCH] release 0.4 --- README.md | 6 +++--- pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38f8059..2caa71d 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The eclipse microprofile config framework is a simple yet powerful configuration ch.carve mp-config-db - 0.3 + 0.4 ``` @@ -21,8 +21,8 @@ The eclipse microprofile config framework is a simple yet powerful configuration Currently there are 5 values you can configure, either through Java system properties or environment variables: * **configsource.db.datasource** override default datasource by setting JNDI name of the datasource * **configsource.db.table** table name for configuration records, default value is "configuration" -* **configsource.db.keyColumn** name of the column containing the key, default value is "key" -* **configsource.db.valueColumn** name of the column containing the value, default value is "value" +* **configsource.db.key-column** name of the column containing the key, default value is "key" +* **configsource.db.value-column** name of the column containing the value, default value is "value" * **configsource.db.validity** how long to cache values (in seconds), default is 30s ## Hint diff --git a/pom.xml b/pom.xml index e22ba86..89653e8 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 ch.carve mp-config-db - 0.3 + 0.4 jar mp-config-db ConfigurationSource for eclipse microprofile config based on a database