Additional functionality on top of MicroProfile Config 1.x - 3.x
If you still need support for Java 7, please use version v0.9.3
By adding the Atbash configuration Maven artifact, you add some additional features as described in the introduction section.
This artifact can be used in combination with the Java 7 ported code but also works with any other MP Config 1.1 compliant implementation.
<dependency>
<groupId>be.atbash.config</groupId>
<artifactId>atbash-config</artifactId>
<version>${atbash.config.version}</version>
</dependency>
The list of features is described in the Atbash configuration features section.
When using The Atbash configuration extension with a 'real' implementation, it is advised to exclude the be.atbash.config:microprofile-config-api since these classes are already present (through the dependency on the MP API from the 'real' configuration implementation)
<dependency>
<groupId>be.atbash.config</groupId>
<artifactId>atbash-config</artifactId>
<version>${atbash.config.version}</version>
<exclusions>
<exclusion>
<groupId>be.atbash.config</groupId>
<artifactId>microprofile-config-api</artifactId>
</exclusion>
</exclusions>
</dependency>
See here