Skip to content

Commit

Permalink
fix: Update dependency minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yyvess committed Oct 2, 2021
1 parent d4c1bd5 commit 9f5b2e7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Configure easily your applications with format JSON instead of flat properties f
- Hot reloading
- Spring profile

##Binary Releases
## Binary Releases

You can find published releases (compiled for Java 7 and above) on Maven Central.

<dependency>
<groupId>net.jmob</groupId>
<artifactId>jsconf</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
</dependency>

Spring context is required, it's not provided by this library
Expand Down Expand Up @@ -52,7 +52,7 @@ Link for direct download if you don't use a dependency manager:

## Library usage

####Sample usage with JavaConfig
#### Sample usage with JavaConfig

File `app.conf` :

Expand Down Expand Up @@ -87,7 +87,7 @@ static class ContextConfiguration {
}
```

####Usage of @ConfigurationProperties
#### Usage of @ConfigurationProperties
File `app.conf` :

```javascript
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
<revision>0.0.0</revision>
<changelist>-SNAPSHOT</changelist>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-version>5.3.1</spring-version>
<junit-version>5.7.0</junit-version>
<spring-version>5.3.10</spring-version>
<junit-version>5.8.1</junit-version>
<typesafe-version>1.4.1</typesafe-version>
<logback-version>1.1.2</logback-version>
<logback-version>1.2.6</logback-version>
<dhcp.version>1.4</dhcp.version>
</properties>
</properties>

<dependencies>
<dependency>
Expand Down Expand Up @@ -98,7 +98,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
<version>5.2.2.Final</version>
<version>5.4.3.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -203,7 +203,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down Expand Up @@ -240,7 +240,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.3.1</version>
<configuration>
<quiet>true</quiet>
<nonavbar>true</nonavbar>
Expand All @@ -260,7 +260,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<version>3.0.0</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ static void clean() throws IOException {
Files.deleteIfExists(tempDirectory);
}

// Test required to have put ${java.io.tmpdir} on ClassPath
@Test
// Test required to have put ${java.io.tmpdir} on ClassPath
void testRealReloading() throws IOException, InterruptedException {
final Object ref = this.conf;
assertNotNull(this.conf);
Expand Down

0 comments on commit 9f5b2e7

Please sign in to comment.