From 7bde2ff4de716abc24711f15f6ac136056f6060b Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:35:30 +0200 Subject: [PATCH 1/6] convert indent to spaces --- pom.xml | 135 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 69 insertions(+), 66 deletions(-) diff --git a/pom.xml b/pom.xml index 939d25f..73629e6 100644 --- a/pom.xml +++ b/pom.xml @@ -1,18 +1,19 @@ - - 4.0.0 + + 4.0.0 de.neuland-bfi - spring-pug4j + spring-pug4j 3.0.1-SNAPSHOT jar - spring-pug4j - Spring interface to the Pug4J compiler (formerly known as spring-jade4j) + spring-pug4j + Spring interface to the Pug4J compiler (formerly known as spring-jade4j) org.sonatype.oss oss-parent 9 - + https://github.com/neuland/spring-pug4j @@ -58,12 +59,12 @@ - - 6.0.3 - 6.0.0 - UTF-8 + + 6.0.3 + 6.0.0 + UTF-8 8 - + @@ -95,7 +96,7 @@ - + @@ -110,12 +111,12 @@ - - + + org.apache.maven.plugins - maven-compiler-plugin + maven-compiler-plugin 3.10.1 - + org.apache.maven.plugins maven-surefire-plugin @@ -138,7 +139,7 @@ - + org.apache.maven.plugins maven-javadoc-plugin 3.4.1 @@ -160,54 +161,56 @@ deploy deploy - deploy + + deploy + - - + + - + jakarta.servlet jakarta.servlet-api ${servlet-api-version} provided - - de.neuland-bfi - pug4j - 2.0.6 - - - - - org.springframework - spring-core - ${org.springframework.version} + + de.neuland-bfi + pug4j + 2.0.6 + + + + + org.springframework + spring-core + ${org.springframework.version} provided - + - - org.springframework - spring-web - ${org.springframework.version} + + org.springframework + spring-web + ${org.springframework.version} provided - + - + org.springframework spring-context - ${org.springframework.version} + ${org.springframework.version} provided - + - - org.springframework - spring-webmvc - ${org.springframework.version} + + org.springframework + spring-webmvc + ${org.springframework.version} provided - + commons-io @@ -215,26 +218,26 @@ 2.11.0 - - - org.slf4j - slf4j-api - 2.0.6 - - - - - org.slf4j - slf4j-simple - 2.0.6 - test - - - junit - junit - 4.13.2 - test - + + + org.slf4j + slf4j-api + 2.0.6 + + + + + org.slf4j + slf4j-simple + 2.0.6 + test + + + junit + junit + 4.13.2 + test + org.mockito mockito-core From 5b5bb1e818b7345ddf3b0cc4eb62100a3c1b2bad Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:36:28 +0200 Subject: [PATCH 2/6] remove unused import --- .../neuland/pug4j/spring/template/SpringTemplateLoaderTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/java/de/neuland/pug4j/spring/template/SpringTemplateLoaderTest.java b/src/test/java/de/neuland/pug4j/spring/template/SpringTemplateLoaderTest.java index 2be6928..31c05c5 100644 --- a/src/test/java/de/neuland/pug4j/spring/template/SpringTemplateLoaderTest.java +++ b/src/test/java/de/neuland/pug4j/spring/template/SpringTemplateLoaderTest.java @@ -7,7 +7,6 @@ import java.io.ByteArrayInputStream; import java.io.InputStream; -import java.io.InputStreamReader; import java.io.Reader; import static org.junit.Assert.*; From 55a7af2fbaad2dc84f654117806009581d24de67 Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:38:41 +0200 Subject: [PATCH 3/6] extract deps versions as properties --- pom.xml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 73629e6..9df085a 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,12 @@ 6.0.0 UTF-8 8 + 2.0.6 + 2.0.6 + 2.11.0 + 4.13.2 + 4.11.0 + 2.0.6 @@ -180,7 +186,7 @@ de.neuland-bfi pug4j - 2.0.6 + ${pug4j.version} @@ -215,33 +221,33 @@ commons-io commons-io - 2.11.0 + ${commons-io.version} org.slf4j slf4j-api - 2.0.6 + ${slf4j-api.version} org.slf4j slf4j-simple - 2.0.6 + ${slf4j-simple.version} test junit junit - 4.13.2 + ${junit.version} test org.mockito mockito-core - 4.11.0 + ${mockito-core.version} test From 7d914048bd61ac6bf4ad7a8c03d723e115324d25 Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:41:14 +0200 Subject: [PATCH 4/6] upgrade dependencies to latest --- pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 9df085a..13d8078 100644 --- a/pom.xml +++ b/pom.xml @@ -60,16 +60,16 @@ - 6.0.3 + 6.0.13 6.0.0 UTF-8 8 - 2.0.6 - 2.0.6 - 2.11.0 + 2.0.9 + 2.0.9 + 2.14.0 4.13.2 - 4.11.0 - 2.0.6 + 5.6.0 + 2.1.0 From 41ef6a8e0941af8aef5dc9b08b21a652e3ddd32c Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:43:48 +0200 Subject: [PATCH 5/6] extract plugins versions as properties --- pom.xml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 13d8078..e3a3e23 100644 --- a/pom.xml +++ b/pom.xml @@ -70,6 +70,13 @@ 4.13.2 5.6.0 2.1.0 + 3.0.1 + 2.5.3 + 3.10.1 + 2.22.2 + 3.2.1 + 3.4.1 + 3.0.0 @@ -86,7 +93,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.0.1 + ${maven-gpg-plugin.version} sign-artifacts @@ -108,7 +115,7 @@ org.apache.maven.plugins maven-release-plugin - 2.5.3 + ${maven-release-plugin.version} forked-path false @@ -121,12 +128,12 @@ org.apache.maven.plugins maven-compiler-plugin - 3.10.1 + ${maven-compiler-plugin.version} org.apache.maven.plugins maven-surefire-plugin - 2.22.2 + ${maven-surefire-plugin.version} false false @@ -135,7 +142,7 @@ org.apache.maven.plugins maven-source-plugin - 3.2.1 + ${maven-source-plugin.version} attach-sources @@ -148,7 +155,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.4.1 + ${maven-javadoc-plugin.version} attach-javadocs @@ -162,7 +169,7 @@ org.apache.maven.plugins maven-deploy-plugin - 3.0.0 + ${maven-deploy-plugin.version} deploy From 6916cf040d7db4ae0bbfe073a64f0a3604a68a7b Mon Sep 17 00:00:00 2001 From: Dmitriy Belyaev Date: Tue, 17 Oct 2023 07:44:30 +0200 Subject: [PATCH 6/6] upgrade plugins to latest --- pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index e3a3e23..d35ccd4 100644 --- a/pom.xml +++ b/pom.xml @@ -71,12 +71,12 @@ 5.6.0 2.1.0 3.0.1 - 2.5.3 - 3.10.1 - 2.22.2 - 3.2.1 - 3.4.1 - 3.0.0 + 3.0.1 + 3.11.0 + 3.0.0 + 3.3.0 + 3.5.0 + 3.1.1