From 9f5b2e70bc061885b41e6e8f4cf9147e8ec9a162 Mon Sep 17 00:00:00 2001 From: Yves Galante Date: Sat, 2 Oct 2021 17:32:17 +0200 Subject: [PATCH] fix: Update dependency minor versions --- README.md | 8 ++++---- pom.xml | 16 ++++++++-------- .../jmob/jsconf/core/test/RealReloadingTest.java | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index b5cc008..08796a2 100644 --- a/README.md +++ b/README.md @@ -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. net.jmob jsconf - 1.4.0 + 1.4.1 Spring context is required, it's not provided by this library @@ -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` : @@ -87,7 +87,7 @@ static class ContextConfiguration { } ``` -####Usage of @ConfigurationProperties +#### Usage of @ConfigurationProperties File `app.conf` : ```javascript diff --git a/pom.xml b/pom.xml index cb9e487..647626e 100644 --- a/pom.xml +++ b/pom.xml @@ -36,12 +36,12 @@ 0.0.0 -SNAPSHOT UTF-8 - 5.3.1 - 5.7.0 + 5.3.10 + 5.8.1 1.4.1 - 1.1.2 + 1.2.6 1.4 - + @@ -98,7 +98,7 @@ org.hibernate hibernate-validator-cdi - 5.2.2.Final + 5.4.3.Final test @@ -203,7 +203,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.7.0 + 3.8.1 1.8 1.8 @@ -240,7 +240,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.0.0-M1 + 3.3.1 true true @@ -260,7 +260,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.0.0-M3 + 3.0.0 enforce-maven diff --git a/src/test/java/net/jmob/jsconf/core/test/RealReloadingTest.java b/src/test/java/net/jmob/jsconf/core/test/RealReloadingTest.java index 355fffb..bf58b00 100644 --- a/src/test/java/net/jmob/jsconf/core/test/RealReloadingTest.java +++ b/src/test/java/net/jmob/jsconf/core/test/RealReloadingTest.java @@ -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);