Skip to content

Commit

Permalink
prepare for release 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rikcarve committed Apr 10, 2020
1 parent 01fe9d3 commit 4c8a861
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/ch.carve/mp-config-consul/badge.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/ch.carve/mp-config-consul/)

# mp-config-consul
A eclipse microprofile config (1.3) extension which uses [Consul](https://www.consul.io/) as source.
A eclipse microprofile config (1.4) extension which uses [Consul](https://www.consul.io/) as source.

> This project has been integrated in https://github.com/microprofile-extensions/config-ext
Expand All @@ -15,7 +15,7 @@ The eclipse microprofile config framework is a simple yet powerful configuration
<dependency>
<groupId>ch.carve</groupId>
<artifactId>mp-config-consul</artifactId>
<version>0.7</version>
<version>0.8</version>
</dependency>
```

Expand Down
10 changes: 5 additions & 5 deletions 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-consul</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
<packaging>jar</packaging>
<name>mp-config-consul</name>
<description>Consul ConfigurationSource for eclipse microprofile config</description>
Expand All @@ -31,20 +31,20 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.jupiter.version>5.6.0</junit.jupiter.version>
<junit.jupiter.version>5.6.1</junit.jupiter.version>
</properties>

<dependencies>
<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
<artifactId>microprofile-config-api</artifactId>
<version>1.3</version>
<version>1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ecwid.consul</groupId>
<artifactId>consul-api</artifactId>
<version>1.4.4</version>
<version>1.4.5</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -72,7 +72,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.2.4</version>
<version>3.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ private <T> T retry(int maxRetries, Supplier<T> supplier, Runnable onFailedAttem
}

private void forceReconnect() {
logger.info("force reconnect");
client = null;
}

}

0 comments on commit 4c8a861

Please sign in to comment.