From b0fc64ff9163f9912e63c93b3a665706e7172771 Mon Sep 17 00:00:00 2001 From: Adrian Szegedi Date: Sat, 1 Aug 2020 13:30:54 +0200 Subject: [PATCH 1/2] update plugin versions which reported missing configurations: - maven-release-plugin -> tagNameFormat - maven-pmd-plugin -> executions/excludes - javancss-maven-plugin -> encoding --- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d521802..7be8a8c 100644 --- a/pom.xml +++ b/pom.xml @@ -188,6 +188,7 @@ org.apache.maven.plugins maven-release-plugin + 2.5.3 v@{project.version} package install:install-file @@ -253,7 +254,7 @@ org.apache.maven.plugins maven-pmd-plugin - 3.6 + 3.13.0 true @@ -323,7 +324,7 @@ org.codehaus.mojo javancss-maven-plugin - 2.0 + 2.1 ${project.build.sourceEncoding} 10 From 9d41a5a05a6a86b3d29e63521831e099bfe5b4e5 Mon Sep 17 00:00:00 2001 From: Adrian Szegedi Date: Sat, 1 Aug 2020 18:46:28 +0200 Subject: [PATCH 2/2] - fix javadoc error - suppress false positive PMD violation --- pom.xml | 1 + src/main/java/com/mifmif/common/regex/util/Iterable.java | 1 + 2 files changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 7be8a8c..ac5528d 100644 --- a/pom.xml +++ b/pom.xml @@ -171,6 +171,7 @@ maven-javadoc-plugin 2.10.3 + 1.6 private false false diff --git a/src/main/java/com/mifmif/common/regex/util/Iterable.java b/src/main/java/com/mifmif/common/regex/util/Iterable.java index 5b45fde..5c2713d 100644 --- a/src/main/java/com/mifmif/common/regex/util/Iterable.java +++ b/src/main/java/com/mifmif/common/regex/util/Iterable.java @@ -21,6 +21,7 @@ * @author y.mifrah * */ +@SuppressWarnings("PMD.UnnecessaryFullyQualifiedName") public interface Iterable extends java.lang.Iterable{ Iterator iterator(); }