Skip to content

atbashEE/atbash-config

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

License Build Status Maven Central

atbash-config

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

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