atbash-config
MicroProfile Config port to Java 7 with extensions
MP Configuration running on Java 7
If you just want to run an implementation of MP configuration on Java 7 (without the Atbash extensions), you can add the following dependency to your application.
<dependency>
<groupId>be.atbash.config</groupId>
<artifactId>geronimo-config</artifactId>
<version>${atbash.config.version}</version>
</dependency>
For the list of features and how to use them, I refer to the MicroProfile configuration documentation and examples.
Atbash configuration extension
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>
User manual
See here