Skip to content

Commit

Permalink
release 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rikcarve committed Aug 1, 2019
1 parent 82ccc7e commit 8a22a99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ The eclipse microprofile config framework is a simple yet powerful configuration
<dependency>
<groupId>ch.carve</groupId>
<artifactId>mp-config-db</artifactId>
<version>0.3</version>
<version>0.4</version>
</dependency>
```

## 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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ch.carve</groupId>
<artifactId>mp-config-db</artifactId>
<version>0.3</version>
<version>0.4</version>
<packaging>jar</packaging>
<name>mp-config-db</name>
<description>ConfigurationSource for eclipse microprofile config based on a database</description>
Expand Down

0 comments on commit 8a22a99

Please sign in to comment.