From 400f6c6776e7e9dbcce4fabefac123f6281fc836 Mon Sep 17 00:00:00 2001 From: Kevin Guerra Date: Tue, 21 Sep 2021 16:46:14 +0000 Subject: [PATCH 01/11] fix for npa when using line number --- .../lang/ecmascript/rule/EcmascriptRuleViolationFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java b/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java index 55b3a08c3b..785f64ff66 100644 --- a/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java +++ b/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java @@ -35,6 +35,6 @@ public final class EcmascriptRuleViolationFactory extends AbstractRuleViolationF @Override protected RuleViolation createRuleViolation(Rule rule, RuleContext ruleContext, Node node, String message, int beginLine, int endLine) { - return null; // FIXME + return new ParametricRuleViolation<>(rule, ruleContext, (EcmascriptNode) node, message, beginLine, endLine); } } From fd3c366822a1e6428dcc25b302b699c2dd0e6414 Mon Sep 17 00:00:00 2001 From: Kevin Guerra Date: Tue, 21 Sep 2021 17:41:33 +0000 Subject: [PATCH 02/11] Added constructor with beging and end lines --- .../sourceforge/pmd/lang/rule/ParametricRuleViolation.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java b/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java index a41319dfac..64e825494a 100644 --- a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java +++ b/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java @@ -66,6 +66,13 @@ public class ParametricRuleViolation implements RuleViolation { } + public ParametricRuleViolation(Rule theRule, RuleContext ctx, T node, String message, + int beginLine, int endLine) { + this(theRule, ctx, node, message); + this.beginLine = beginLine; + this.endLine = endLine; + } + private void setSuppression(Rule rule, T node) { String regex = rule.getProperty(Rule.VIOLATION_SUPPRESS_REGEX_DESCRIPTOR); // Regex From 6458f95c4d51d8f3791e0b5a94e299ddca23e20b Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Thu, 23 Sep 2021 19:57:56 +0200 Subject: [PATCH 03/11] [plsql] Parsing exception SELECT...INTO on Associative Arrays Types Fixes #3515 --- docs/pages/release_notes.md | 1 + pmd-plsql/etc/grammar/PldocAST.jjt | 5 +- .../pmd/lang/plsql/ast/PlsqlTreeDumpTest.java | 5 + .../pmd/lang/plsql/ast/SelectIntoArray.pls | 22 ++++ .../pmd/lang/plsql/ast/SelectIntoArray.txt | 103 ++++++++++++++++++ 5 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.pls create mode 100644 pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.txt diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index cfd61f8fb5..a1589b09ed 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -29,6 +29,7 @@ See [credits](https://pmd.github.io/latest/pmd_projectdocs_credits.html) for our * [#3493](https://github.com/pmd/pmd/pull/3493): \[java] AvoidAccessibilityAlteration: add tests and fix rule * plsql * [#3487](https://github.com/pmd/pmd/issues/3487): \[plsql] Parsing exception OPEN ref_cursor_name FOR statement + * [#3515](https://github.com/pmd/pmd/issues/3515): \[plsql] Parsing exception SELECT...INTO on Associative Arrays Types ### API Changes diff --git a/pmd-plsql/etc/grammar/PldocAST.jjt b/pmd-plsql/etc/grammar/PldocAST.jjt index f6ceeaa92e..3c5656c028 100644 --- a/pmd-plsql/etc/grammar/PldocAST.jjt +++ b/pmd-plsql/etc/grammar/PldocAST.jjt @@ -2028,10 +2028,13 @@ ASTIntoClause IntoClause() : { return jjtThis; } } +// This might also be a associative array dereference... +// see https://github.com/pmd/pmd/issues/3515 ASTVariableName VariableName() : -{ ASTID id; StringBuilder name = new StringBuilder(); } +{ ASTID id; ASTLiteral lit; StringBuilder name = new StringBuilder(); } { id = ID() { name.append(id.getImage()); } + [ "(" lit = Literal() ")" { name.append('(').append(lit.getImage()).append(')'); } ] [ "." id = ID() { name.append('.').append(id.getImage()); } ] [ "." id = ID() { name.append('.').append(id.getImage()); } ] { diff --git a/pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/ast/PlsqlTreeDumpTest.java b/pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/ast/PlsqlTreeDumpTest.java index 089c16f76a..3a4c1cc8f8 100644 --- a/pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/ast/PlsqlTreeDumpTest.java +++ b/pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/ast/PlsqlTreeDumpTest.java @@ -36,4 +36,9 @@ public class PlsqlTreeDumpTest extends BaseTreeDumpTest { public void parseOpenForStatement() { doTest("OpenForStatement"); } + + @Test + public void parseSelectIntoAssociativeArrayType() { + doTest("SelectIntoArray"); + } } diff --git a/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.pls b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.pls new file mode 100644 index 0000000000..b8698f8422 --- /dev/null +++ b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.pls @@ -0,0 +1,22 @@ +-- +-- See https://github.com/pmd/pmd/issues/3515 +-- + +CREATE OR REPLACE PROCEDURE EXAMPLE_PROCEDURE IS + -- + TYPE example_data_rt IS RECORD( + field_one PLS_INTEGER, + field_two PLS_INTEGER, + field_three PLS_INTEGER); + -- + TYPE example_data_aat IS TABLE OF example_data_rt INDEX BY BINARY_INTEGER; + -- + l_example_data example_data_aat; + -- +BEGIN + -- + SELECT 1 field_value_one, 2 field_value_two, 3 field_value_three + INTO l_example_data(1).field_one,l_example_data(1).field_two,l_example_data(1).field_three + FROM DUAL; + -- +END EXAMPLE_PROCEDURE; diff --git a/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.txt b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.txt new file mode 100644 index 0000000000..2709539e5e --- /dev/null +++ b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SelectIntoArray.txt @@ -0,0 +1,103 @@ ++- Input[@CanonicalImage = null, @ExcludedLinesCount = 0, @ExcludedRangesCount = 0, @Sourcecode = "-- +-- See https://github.com/pmd/pmd/issues/3515 +-- + +CREATE OR REPLACE PROCEDURE EXAMPLE_PROCEDURE IS + -- + TYPE example_data_rt IS RECORD( + field_one PLS_INTEGER, + field_two PLS_INTEGER, + field_three PLS_INTEGER); + -- + TYPE example_data_aat IS TABLE OF example_data_rt INDEX BY BINARY_INTEGER; + -- + l_example_data example_data_aat; + -- +BEGIN + -- + SELECT 1 field_value_one, 2 field_value_two, 3 field_value_three + INTO l_example_data(1).field_one,l_example_data(1).field_two,l_example_data(1).field_three + FROM DUAL; + -- +END EXAMPLE_PROCEDURE; +"] + +- Global[@CanonicalImage = null] + +- ProgramUnit[@CanonicalImage = null, @MethodName = "EXAMPLE_PROCEDURE", @Name = "EXAMPLE_PROCEDURE", @ObjectName = null] + +- MethodDeclarator[@CanonicalImage = "EXAMPLE_PROCEDURE", @Image = "EXAMPLE_PROCEDURE", @ParameterCount = 1] + | +- ObjectNameDeclaration[@CanonicalImage = "EXAMPLE_PROCEDURE", @Image = "EXAMPLE_PROCEDURE"] + | +- ID[@CanonicalImage = "EXAMPLE_PROCEDURE", @Image = "EXAMPLE_PROCEDURE"] + +- DeclarativeSection[@CanonicalImage = null] + | +- DeclarativeUnit[@CanonicalImage = null] + | | +- SubTypeDefinition[@CanonicalImage = "EXAMPLE_DATA_RT", @Image = "example_data_rt"] + | | +- QualifiedID[@CanonicalImage = "EXAMPLE_DATA_RT", @Image = "example_data_rt"] + | | +- FieldDeclaration[@CanonicalImage = "FIELD_ONE", @Image = "field_one"] + | | | +- ID[@CanonicalImage = "FIELD_ONE", @Image = "field_one"] + | | | +- Datatype[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER", @TypeImage = "PLS_INTEGER"] + | | | +- ScalarDataTypeName[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER"] + | | +- FieldDeclaration[@CanonicalImage = "FIELD_TWO", @Image = "field_two"] + | | | +- ID[@CanonicalImage = "FIELD_TWO", @Image = "field_two"] + | | | +- Datatype[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER", @TypeImage = "PLS_INTEGER"] + | | | +- ScalarDataTypeName[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER"] + | | +- FieldDeclaration[@CanonicalImage = "FIELD_THREE", @Image = "field_three"] + | | +- ID[@CanonicalImage = "FIELD_THREE", @Image = "field_three"] + | | +- Datatype[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER", @TypeImage = "PLS_INTEGER"] + | | +- ScalarDataTypeName[@CanonicalImage = "PLS_INTEGER", @Image = "PLS_INTEGER"] + | +- DeclarativeUnit[@CanonicalImage = null] + | | +- SubTypeDefinition[@CanonicalImage = "EXAMPLE_DATA_AAT", @Image = "example_data_aat"] + | | +- QualifiedID[@CanonicalImage = "EXAMPLE_DATA_AAT", @Image = "example_data_aat"] + | | +- Datatype[@CanonicalImage = "EXAMPLE_DATA_RT", @Image = "example_data_rt", @TypeImage = "example_data_rt"] + | | | +- QualifiedName[@CanonicalImage = "EXAMPLE_DATA_RT", @Image = "example_data_rt"] + | | | +- UnqualifiedID[@CanonicalImage = "EXAMPLE_DATA_RT", @Image = "example_data_rt"] + | | +- Datatype[@CanonicalImage = "BINARY_INTEGER", @Image = "BINARY_INTEGER", @TypeImage = "BINARY_INTEGER"] + | | +- ScalarDataTypeName[@CanonicalImage = "BINARY_INTEGER", @Image = "BINARY_INTEGER"] + | +- DeclarativeUnit[@CanonicalImage = null] + | +- VariableOrConstantDeclaration[@CanonicalImage = null] + | +- VariableOrConstantDeclarator[@CanonicalImage = "L_EXAMPLE_DATA EXAMPLE_DATA_AAT", @Image = "l_example_data example_data_aat"] + | +- VariableOrConstantDeclaratorId[@Array = false, @ArrayDepth = 0, @CanonicalImage = "L_EXAMPLE_DATA", @Image = "l_example_data"] + | | +- ID[@CanonicalImage = "L_EXAMPLE_DATA", @Image = "l_example_data"] + | +- Datatype[@CanonicalImage = "EXAMPLE_DATA_AAT", @Image = "example_data_aat", @TypeImage = "example_data_aat"] + | +- QualifiedName[@CanonicalImage = "EXAMPLE_DATA_AAT", @Image = "example_data_aat"] + | +- UnqualifiedID[@CanonicalImage = "EXAMPLE_DATA_AAT", @Image = "example_data_aat"] + +- Statement[@CanonicalImage = null] + | +- UnlabelledStatement[@CanonicalImage = null] + | +- SelectIntoStatement[@All = false, @CanonicalImage = null, @Distinct = false, @Unique = false] + | +- SelectList[@CanonicalImage = null] + | | +- SqlExpression[@CanonicalImage = "1", @Image = "1"] + | | | +- PrimaryPrefix[@CanonicalImage = "1", @Image = "1", @SelfModifier = false] + | | | +- Literal[@CanonicalImage = "1", @Image = "1"] + | | | +- NumericLiteral[@CanonicalImage = "1", @Image = "1"] + | | +- ColumnAlias[@CanonicalImage = "FIELD_VALUE_ONE", @Image = "field_value_one"] + | | | +- ID[@CanonicalImage = "FIELD_VALUE_ONE", @Image = "field_value_one"] + | | +- SqlExpression[@CanonicalImage = "2", @Image = "2"] + | | | +- PrimaryPrefix[@CanonicalImage = "2", @Image = "2", @SelfModifier = false] + | | | +- Literal[@CanonicalImage = "2", @Image = "2"] + | | | +- NumericLiteral[@CanonicalImage = "2", @Image = "2"] + | | +- ColumnAlias[@CanonicalImage = "FIELD_VALUE_TWO", @Image = "field_value_two"] + | | | +- ID[@CanonicalImage = "FIELD_VALUE_TWO", @Image = "field_value_two"] + | | +- SqlExpression[@CanonicalImage = "3", @Image = "3"] + | | | +- PrimaryPrefix[@CanonicalImage = "3", @Image = "3", @SelfModifier = false] + | | | +- Literal[@CanonicalImage = "3", @Image = "3"] + | | | +- NumericLiteral[@CanonicalImage = "3", @Image = "3"] + | | +- ColumnAlias[@CanonicalImage = "FIELD_VALUE_THREE", @Image = "field_value_three"] + | | +- ID[@CanonicalImage = "FIELD_VALUE_THREE", @Image = "field_value_three"] + | +- IntoClause[@CanonicalImage = null] + | | +- VariableName[@CanonicalImage = "L_EXAMPLE_DATA(1).FIELD_ONE", @Image = "l_example_data(1).field_one"] + | | | +- ID[@CanonicalImage = "L_EXAMPLE_DATA", @Image = "l_example_data"] + | | | +- Literal[@CanonicalImage = "1", @Image = "1"] + | | | | +- NumericLiteral[@CanonicalImage = "1", @Image = "1"] + | | | +- ID[@CanonicalImage = "FIELD_ONE", @Image = "field_one"] + | | +- VariableName[@CanonicalImage = "L_EXAMPLE_DATA(1).FIELD_TWO", @Image = "l_example_data(1).field_two"] + | | | +- ID[@CanonicalImage = "L_EXAMPLE_DATA", @Image = "l_example_data"] + | | | +- Literal[@CanonicalImage = "1", @Image = "1"] + | | | | +- NumericLiteral[@CanonicalImage = "1", @Image = "1"] + | | | +- ID[@CanonicalImage = "FIELD_TWO", @Image = "field_two"] + | | +- VariableName[@CanonicalImage = "L_EXAMPLE_DATA(1).FIELD_THREE", @Image = "l_example_data(1).field_three"] + | | +- ID[@CanonicalImage = "L_EXAMPLE_DATA", @Image = "l_example_data"] + | | +- Literal[@CanonicalImage = "1", @Image = "1"] + | | | +- NumericLiteral[@CanonicalImage = "1", @Image = "1"] + | | +- ID[@CanonicalImage = "FIELD_THREE", @Image = "field_three"] + | +- FromClause[@CanonicalImage = null] + | +- TableReference[@CanonicalImage = null] + | +- TableName[@CanonicalImage = "DUAL", @Image = "DUAL"] + | +- ID[@CanonicalImage = "DUAL", @Image = "DUAL"] + +- ID[@CanonicalImage = "EXAMPLE_PROCEDURE", @Image = "EXAMPLE_PROCEDURE"] From 4382a32fb11340b5832405e3c559ae0d1873fcf4 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 09:55:43 +0200 Subject: [PATCH 04/11] [javascript] Fix EcmascriptRuleViolationFactory (#3516) --- .../lang/rule/ParametricRuleViolation.java | 7 --- .../rule/EcmascriptRuleViolationFactory.java | 7 +-- .../EcmasccriptLanguageModuleTest.java | 46 +++++++++++++++++++ 3 files changed, 50 insertions(+), 10 deletions(-) create mode 100644 pmd-javascript/src/test/java/net/sourceforge/pmd/lang/ecmascript/EcmasccriptLanguageModuleTest.java diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java b/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java index 64e825494a..a41319dfac 100644 --- a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java +++ b/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/ParametricRuleViolation.java @@ -66,13 +66,6 @@ public class ParametricRuleViolation implements RuleViolation { } - public ParametricRuleViolation(Rule theRule, RuleContext ctx, T node, String message, - int beginLine, int endLine) { - this(theRule, ctx, node, message); - this.beginLine = beginLine; - this.endLine = endLine; - } - private void setSuppression(Rule rule, T node) { String regex = rule.getProperty(Rule.VIOLATION_SUPPRESS_REGEX_DESCRIPTOR); // Regex diff --git a/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java b/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java index 785f64ff66..93970b852a 100644 --- a/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java +++ b/pmd-javascript/src/main/java/net/sourceforge/pmd/lang/ecmascript/rule/EcmascriptRuleViolationFactory.java @@ -26,15 +26,16 @@ public final class EcmascriptRuleViolationFactory extends AbstractRuleViolationF private EcmascriptRuleViolationFactory() { } - @SuppressWarnings("rawtypes") @Override protected RuleViolation createRuleViolation(Rule rule, RuleContext ruleContext, Node node, String message) { - return new ParametricRuleViolation<>(rule, ruleContext, (EcmascriptNode) node, message); + return new ParametricRuleViolation<>(rule, ruleContext, (EcmascriptNode) node, message); } @Override protected RuleViolation createRuleViolation(Rule rule, RuleContext ruleContext, Node node, String message, int beginLine, int endLine) { - return new ParametricRuleViolation<>(rule, ruleContext, (EcmascriptNode) node, message, beginLine, endLine); + ParametricRuleViolation> ruleViolation = new ParametricRuleViolation<>(rule, ruleContext, (EcmascriptNode) node, message); + ruleViolation.setLines(beginLine, endLine); + return ruleViolation; } } diff --git a/pmd-javascript/src/test/java/net/sourceforge/pmd/lang/ecmascript/EcmasccriptLanguageModuleTest.java b/pmd-javascript/src/test/java/net/sourceforge/pmd/lang/ecmascript/EcmasccriptLanguageModuleTest.java new file mode 100644 index 0000000000..60d698ebe5 --- /dev/null +++ b/pmd-javascript/src/test/java/net/sourceforge/pmd/lang/ecmascript/EcmasccriptLanguageModuleTest.java @@ -0,0 +1,46 @@ +/* + * BSD-style license; for more info see http://pmd.sourceforge.net/license.html + */ + +package net.sourceforge.pmd.lang.ecmascript; + +import org.junit.Assert; +import org.junit.Test; + +import net.sourceforge.pmd.Rule; +import net.sourceforge.pmd.RuleContext; +import net.sourceforge.pmd.RuleViolation; +import net.sourceforge.pmd.lang.LanguageRegistry; +import net.sourceforge.pmd.lang.LanguageVersion; +import net.sourceforge.pmd.lang.LanguageVersionHandler; +import net.sourceforge.pmd.lang.ecmascript.ast.ASTAstRoot; +import net.sourceforge.pmd.lang.ecmascript.ast.JsParsingHelper; +import net.sourceforge.pmd.lang.ecmascript.rule.AbstractEcmascriptRule; +import net.sourceforge.pmd.lang.rule.RuleViolationFactory; + +public class EcmasccriptLanguageModuleTest { + private Rule rule = new AbstractEcmascriptRule() { }; + private ASTAstRoot node = JsParsingHelper.DEFAULT.parse("function a() {}"); + private LanguageVersion js = LanguageRegistry.getLanguage(EcmascriptLanguageModule.NAME).getDefaultVersion(); + private LanguageVersionHandler languageVersionHandler = js.getLanguageVersionHandler(); + private RuleViolationFactory ruleViolationFactory = languageVersionHandler.getRuleViolationFactory(); + + @Test + public void canCreateRuleViolation() { + RuleContext context = new RuleContext(); + ruleViolationFactory.addViolation(context, rule, node, "the message", new Object[0]); + Assert.assertEquals(1, context.getReport().getViolations().size()); + RuleViolation ruleViolation = context.getReport().getViolations().get(0); + Assert.assertEquals(1, ruleViolation.getBeginLine()); + } + + @Test + public void canCreateRuleViolationWithLineNumbers() { + RuleContext context = new RuleContext(); + ruleViolationFactory.addViolation(context, rule, node, "the message", 5, 7, new Object[0]); + Assert.assertEquals(1, context.getReport().getViolations().size()); + RuleViolation ruleViolation = context.getReport().getViolations().get(0); + Assert.assertEquals(5, ruleViolation.getBeginLine()); + Assert.assertEquals(7, ruleViolation.getEndLine()); + } +} From 3bb93c5ef65b410a208c26c880b9bbce4cc60973 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 10:00:44 +0200 Subject: [PATCH 05/11] [doc] Update release notes (#3516) --- docs/pages/release_notes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index f75c2435ca..3da6192139 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -20,10 +20,14 @@ This is a {{ site.pmd.release_type }} release. * [#3499](https://github.com/pmd/pmd/pull/3499): \[core] Fix XPath rulechain with combined node tests * java-errorprone * [#3493](https://github.com/pmd/pmd/pull/3493): \[java] AvoidAccessibilityAlteration: add tests and fix rule +* javascript + * [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers ### API Changes ### External Contributions +* [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers - [Kevin Guerra](https://github.com/kevingnet) + {% endtocmaker %} From f9398de22fae6a0bcb2ecdb206299aa42ca33926 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Sat, 25 Sep 2021 09:03:30 +0000 Subject: [PATCH 06/11] docs: update docs/pages/pmd/projectdocs/credits.md [skip ci] --- docs/pages/pmd/projectdocs/credits.md | 121 +++++++++++++------------- 1 file changed, 61 insertions(+), 60 deletions(-) diff --git a/docs/pages/pmd/projectdocs/credits.md b/docs/pages/pmd/projectdocs/credits.md index 32e0ea15af..88b65da0aa 100644 --- a/docs/pages/pmd/projectdocs/credits.md +++ b/docs/pages/pmd/projectdocs/credits.md @@ -375,545 +375,546 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Keve MΓΌller

πŸ› +
Kevin Guerra

πŸ’»
Kevin Jones

πŸ›
Kevin Wayne

πŸ›
Kieran Black

πŸ›
Kirill Zubov

πŸ›
Kirk Clemens

πŸ’» πŸ› -
Klaus Hartl

πŸ› +
Klaus Hartl

πŸ›
Koen Van Looveren

πŸ›
Kris Scheibe

πŸ’» πŸ›
Kunal Thanki

πŸ›
Larry Diamond

πŸ’» πŸ›
Lars Knickrehm

πŸ›
Leo Gutierrez

πŸ› -
Lintsi

πŸ› +
Lintsi

πŸ›
Linus Fernandes

πŸ›
Lixon Lookose

πŸ›
Logesh

πŸ›
Lorenzo Gabriele

πŸ›
LoΓ―c Ledoyen

πŸ›
Lucas Silva

πŸ› -
Lucas Soncini

πŸ’» πŸ› +
Lucas Soncini

πŸ’» πŸ›
Lukasz Slonina

πŸ›
Lukebray

πŸ›
Lyor Goldstein

πŸ›
MCMicS

πŸ›
Macarse

πŸ›
Machine account for PMD

πŸ’» -
Maciek Siemczyk

πŸ› +
Maciek Siemczyk

πŸ›
Maikel Steneker

πŸ’» πŸ›
Maksim Moiseikin

πŸ›
Manfred Koch

πŸ›
Manuel Moya Ferrer

πŸ’» πŸ›
Manuel Ryan

πŸ›
Marat Vyshegorodtsev

πŸ› -
Marcel HΓ€rle

πŸ› +
Marcel HΓ€rle

πŸ›
Marcello Fialho

πŸ›
Marcin Rataj

πŸ›
Mark Adamcin

πŸ›
Mark Hall

πŸ’» πŸ›
Mark Kolich

πŸ›
Mark Pritchard

πŸ› -
Markus Rathgeb

πŸ› +
Markus Rathgeb

πŸ›
Marquis Wang

πŸ›
Martin Feldsztejn

πŸ›
Martin Lehmann

πŸ›
Martin Spamer

πŸ›
Martin TarjΓ‘nyi

πŸ›
MatFl

πŸ› -
Mateusz Stefanski

πŸ› +
Mateusz Stefanski

πŸ›
Mathieu Gouin

πŸ›
MatiasComercio

πŸ’» πŸ›
Matt Benson

πŸ›
Matt De Poorter

πŸ›
Matt Harrah

πŸ›
Matt Nelson

πŸ› -
Matthew Amos

πŸ› +
Matthew Amos

πŸ›
Matthew Duggan

πŸ›
Matthew Hall

πŸ›
MatΓ­as Fraga

πŸ’» πŸ›
Maxime Robert

πŸ’» πŸ›
Michael

πŸ›
Michael Bell

πŸ› -
Michael Bernstein

πŸ› +
Michael Bernstein

πŸ›
Michael Clay

πŸ›
Michael Dombrowski

πŸ›
Michael Hausegger

πŸ›
Michael Hoefer

πŸ›
Michael MΓΆbius

πŸ›
Michael N. Lipp

πŸ› -
Michael Pellegrini

πŸ› +
Michael Pellegrini

πŸ›
Michal Kordas

πŸ›
MichaΕ‚ Borek

πŸ›
MichaΕ‚ KuliΕ„ski

πŸ›
Miguel NΓΊΓ±ez DΓ­az-Montes

πŸ›
Mihai Ionut

πŸ›
Mirek Hankus

πŸ› -
Mladjan Gadzic

πŸ› +
Mladjan Gadzic

πŸ›
MrAngry52

πŸ›
Muminur Choudhury

πŸ›
Mykhailo Palahuta

πŸ’» πŸ›
Nagendra Kumar Singh

πŸ›
Nahuel Barrios

πŸ›
Nathan Braun

πŸ› -
Nathan Reynolds

πŸ› +
Nathan Reynolds

πŸ›
Nathan Reynolds

πŸ›
NathanaΓ«l

πŸ›
Nazdravi

πŸ›
Neha-Dhonde

πŸ›
Nicholas Doyle

πŸ›
Nick Butcher

πŸ› -
Nico Gallinal

πŸ› +
Nico Gallinal

πŸ›
Nicola Dal Maso

πŸ›
Nikita Chursin

πŸ›
Niklas Baudy

πŸ›
Nikolas Havrikov

πŸ›
Nilesh Virkar

πŸ›
Nimit Patel

πŸ› -
Niranjan Harpale

πŸ› +
Niranjan Harpale

πŸ›
Noah Sussman

πŸ›
Noah0120

πŸ›
Noam Tamim

πŸ›
Noel Grandin

πŸ›
Olaf Haalstra

πŸ›
Oleg Pavlenko

πŸ› -
Oliver Eikemeier

πŸ› +
Oliver Eikemeier

πŸ›
Olivier Parent

πŸ’» πŸ›
Ollie Abbey

πŸ’» πŸ›
OverDrone

πŸ›
Ozan Gulle

πŸ’» πŸ›
PUNEET JAIN

πŸ›
Parbati Bose

πŸ› -
Paul Berg

πŸ› +
Paul Berg

πŸ›
Pavel Bludov

πŸ›
Pavel Mička

πŸ›
Pedro Nuno Santos

πŸ›
Pedro Rijo

πŸ›
Pelisse Romain

πŸ’» πŸ“– πŸ›
Pete Davids

πŸ› -
Peter Bruin

πŸ› +
Peter Bruin

πŸ›
Peter Chittum

πŸ’» πŸ›
Peter Cudmore

πŸ›
Peter Kasson

πŸ›
Peter Kofler

πŸ›
Pham Hai Trung

πŸ›
Philip Graf

πŸ’» πŸ› -
Philip Hachey

πŸ› +
Philip Hachey

πŸ›
Philippe Ozil

πŸ›
Phinehas Artemix

πŸ›
Phokham Nonava

πŸ›
Piotr SzymaΕ„ski

πŸ›
Piotrek Ε»ygieΕ‚o

πŸ’» πŸ›
Pranay Jaiswal

πŸ› -
Prasad Kamath

πŸ› +
Prasad Kamath

πŸ›
Prasanna

πŸ›
Presh-AR

πŸ›
Puneet1726

πŸ›
Rafael CortΓͺs

πŸ›
RaheemShaik999

πŸ›
RajeshR

πŸ’» πŸ› -
Ramachandra Mohan

πŸ› +
Ramachandra Mohan

πŸ›
Raquel Pau

πŸ›
Ravikiran Janardhana

πŸ›
Reda Benhemmouche

πŸ›
Renato Oliveira

πŸ’» πŸ›
Rich DiCroce

πŸ›
Riot R1cket

πŸ› -
Rishabh Jain

πŸ› +
Rishabh Jain

πŸ›
RishabhDeep Singh

πŸ›
Robbie Martinus

πŸ’» πŸ›
Robert Henry

πŸ›
Robert Painsi

πŸ›
Robert Russell

πŸ›
Robert SΓΆsemann

πŸ’» πŸ“– πŸ“’ πŸ› -
Robert Whitebit

πŸ› +
Robert Whitebit

πŸ›
Robin Richtsfeld

πŸ›
Robin Stocker

πŸ’» πŸ›
Robin Wils

πŸ›
RochusOest

πŸ›
Rodolfo Noviski

πŸ›
Rodrigo Casara

πŸ› -
Rodrigo Fernandes

πŸ› +
Rodrigo Fernandes

πŸ›
Roman Salvador

πŸ’» πŸ›
Ronald Blaschke

πŸ›
RΓ³bert Papp

πŸ›
Saikat Sengupta

πŸ›
Saksham Handu

πŸ›
Saladoc

πŸ› -
Salesforce Bob Lightning

πŸ› +
Salesforce Bob Lightning

πŸ›
Sam Carlberg

πŸ›
Satoshi Kubo

πŸ›
Scott Kennedy

πŸ›
Scott Wells

πŸ›
Sebastian BΓΆgl

πŸ›
Sebastian Schuberth

πŸ› -
Sebastian Schwarz

πŸ› +
Sebastian Schwarz

πŸ›
Sergey Gorbaty

πŸ›
Sergey Kozlov

πŸ›
Sergey Yanzin

πŸ’» πŸ›
Shubham

πŸ’» πŸ›
Simon Xiao

πŸ›
Srinivasan Venkatachalam

πŸ› -
Stanislav Gromov

πŸ› +
Stanislav Gromov

πŸ›
Stefan Birkner

πŸ›
Stefan Bohn

πŸ›
Stefan Endrullis

πŸ›
Stefan KlΓΆss-Schuster

πŸ›
Stefan Wolf

πŸ›
Stephan H. Wissel

πŸ› -
Stephen

πŸ› +
Stephen

πŸ›
Stephen Friedrich

πŸ›
Stexxe

πŸ›
Stian LΓ₯gstad

πŸ›
StuartClayton5

πŸ›
Supun Arunoda

πŸ›
Suren Abrahamyan

πŸ› -
SwatiBGupta1110

πŸ› +
SwatiBGupta1110

πŸ›
SyedThoufich

πŸ›
Szymon Sasin

πŸ›
T-chuangxin

πŸ›
TERAI Atsuhiro

πŸ›
TIOBE Software

πŸ’» πŸ›
Taylor Smock

πŸ› -
Techeira DamiΓ‘n

πŸ’» πŸ› +
Techeira DamiΓ‘n

πŸ’» πŸ›
Ted Husted

πŸ›
TehBakker

πŸ›
The Gitter Badger

πŸ›
Theodoor

πŸ›
Thiago Henrique HΓΌpner

πŸ›
Thibault Meyer

πŸ› -
Thomas GΓΌttler

πŸ› +
Thomas GΓΌttler

πŸ›
Thomas Jones-Low

πŸ›
Thomas Smith

πŸ’» πŸ›
ThrawnCA

πŸ›
Thunderforge

πŸ’» πŸ›
Tim van der Lippe

πŸ›
Tobias Weimer

πŸ’» πŸ› -
Tom Daly

πŸ› +
Tom Daly

πŸ›
Tomer Figenblat

πŸ›
Tomi De Lucca

πŸ’» πŸ›
Torsten Kleiber

πŸ›
TrackerSB

πŸ›
Ullrich Hafner

πŸ›
Utku Cuhadaroglu

πŸ’» πŸ› -
Valentin Brandl

πŸ› +
Valentin Brandl

πŸ›
Valeria

πŸ›
Vasily Anisimov

πŸ›
Vickenty Fesunov

πŸ›
Victor NoΓ«l

πŸ›
Vincent HUYNH

πŸ›
Vincent Maurin

πŸ› -
Vincent Privat

πŸ› +
Vincent Privat

πŸ›
Vishhwas

πŸ›
Vitaly

πŸ›
Vitaly Polonetsky

πŸ›
Vojtech Polivka

πŸ›
Vsevolod Zholobov

πŸ›
Wang Shidong

πŸ› -
Waqas Ahmed

πŸ› +
Waqas Ahmed

πŸ›
Wayne J. Earl

πŸ›
Wchenghui

πŸ›
Will Winder

πŸ›
William Brockhus

πŸ’» πŸ›
Wilson Kurniawan

πŸ›
Wim Deblauwe

πŸ› -
Woongsik Choi

πŸ› +
Woongsik Choi

πŸ›
XenoAmess

πŸ’» πŸ›
YaroslavTER

πŸ›
Young Chan

πŸ’» πŸ›
YuJin Kim

πŸ›
Yuri Dolzhenko

πŸ›
Yurii Dubinka

πŸ› -
Zoltan Farkas

πŸ› +
Zoltan Farkas

πŸ›
Zustin

πŸ›
aaronhurst-google

πŸ›
alexmodis

πŸ›
andreoss

πŸ›
andrey81inmd

πŸ’» πŸ›
anicoara

πŸ› -
arunprasathav

πŸ› +
arunprasathav

πŸ›
asiercamara

πŸ›
astillich-igniti

πŸ’»
avesolovksyy

πŸ›
avishvat

πŸ›
avivmu

πŸ›
axelbarfod1

πŸ› -
b-3-n

πŸ› +
b-3-n

πŸ›
balbhadra9

πŸ›
base23de

πŸ›
bergander

πŸ›
berkam

πŸ’» πŸ›
breizh31

πŸ›
caesarkim

πŸ› -
carolyujing

πŸ› +
carolyujing

πŸ›
cesares-basilico

πŸ›
chrite

πŸ›
cobratbq

πŸ›
coladict

πŸ›
cosmoJFH

πŸ›
cristalp

πŸ› -
crunsk

πŸ› +
crunsk

πŸ›
cwholmes

πŸ›
cyberjj999

πŸ›
cyw3

πŸ›
d1ss0nanz

πŸ›
danbrycefairsailcom

πŸ›
dariansanity

πŸ› -
darrenmiliband

πŸ› +
darrenmiliband

πŸ›
davidburstrom

πŸ›
dbirkman-paloalto

πŸ›
deepak-patra

πŸ›
dependabot[bot]

πŸ’» πŸ›
dinesh150

πŸ›
diziaq

πŸ› -
dreaminpast123

πŸ› +
dreaminpast123

πŸ›
duanyanan

πŸ›
dutt-sanjay

πŸ›
dylanleung

πŸ›
dzeigler

πŸ›
ekkirala

πŸ›
emersonmoura

πŸ› -
fairy

πŸ› +
fairy

πŸ›
foxmason

πŸ›
frankegabor

πŸ›
frankl

πŸ›
freafrea

πŸ›
fsapatin

πŸ›
gracia19

πŸ› -
guo fei

πŸ› +
guo fei

πŸ›
gurmsc5

πŸ›
gwilymatgearset

πŸ’» πŸ›
haigsn

πŸ›
hemanshu070

πŸ›
henrik242

πŸ›
hongpuwu

πŸ› -
hvbtup

πŸ’» πŸ› +
hvbtup

πŸ’» πŸ›
igniti GmbH

πŸ›
ilovezfs

πŸ›
itaigilo

πŸ›
jakivey32

πŸ›
jbennett2091

πŸ›
jcamerin

πŸ› -
jkeener1

πŸ› +
jkeener1

πŸ›
jmetertea

πŸ›
josemanuelrolon

πŸ’» πŸ›
kabroxiko

πŸ’» πŸ›
karwer

πŸ›
kaulonline

πŸ›
kdaemonv

πŸ› -
kenji21

πŸ’» πŸ› +
kenji21

πŸ’» πŸ›
kfranic

πŸ›
khalidkh

πŸ›
krzyk

πŸ›
lasselindqvist

πŸ›
lihuaib

πŸ›
lonelyma1021

πŸ› -
lpeddy

πŸ› +
lpeddy

πŸ›
lyriccoder

πŸ›
marcelmore

πŸ›
matchbox

πŸ›
matthiaskraaz

πŸ›
meandonlyme

πŸ›
mikesive

πŸ› -
milossesic

πŸ› +
milossesic

πŸ›
mriddell95

πŸ›
mrlzh

πŸ›
msloan

πŸ›
mucharlaravalika

πŸ›
mvenneman

πŸ›
nareshl119

πŸ› -
nicolas-harraudeau-sonarsource

πŸ› +
nicolas-harraudeau-sonarsource

πŸ›
noerremark

πŸ›
novsirion

πŸ›
oggboy

πŸ›
oinume

πŸ›
orimarko

πŸ’» πŸ›
pallavi agarwal

πŸ› -
parksungrin

πŸ› +
parksungrin

πŸ›
patpatpat123

πŸ›
patriksevallius

πŸ›
pbrajesh1

πŸ›
phoenix384

πŸ›
piotrszymanski-sc

πŸ’»
plan3d

πŸ› -
poojasix

πŸ› +
poojasix

πŸ›
prabhushrikant

πŸ›
pujitha8783

πŸ›
r-r-a-j

πŸ›
raghujayjunk

πŸ›
rajeshveera

πŸ›
rajeswarreddy88

πŸ› -
recdevs

πŸ› +
recdevs

πŸ›
reudismam

πŸ’» πŸ›
rijkt

πŸ›
rillig-tk

πŸ›
rmohan20

πŸ’» πŸ›
rxmicro

πŸ›
ryan-gustafson

πŸ’» πŸ› -
sabi0

πŸ› +
sabi0

πŸ›
scais

πŸ›
sebbASF

πŸ›
sergeygorbaty

πŸ’»
shilko2013

πŸ›
simeonKondr

πŸ›
snajberk

πŸ› -
sniperrifle2004

πŸ› +
sniperrifle2004

πŸ›
snuyanzin

πŸ›
sratz

πŸ›
stonio

πŸ›
sturton

πŸ’» πŸ›
sudharmohan

πŸ›
suruchidawar

πŸ› -
svenfinitiv

πŸ› +
svenfinitiv

πŸ›
tashiscool

πŸ›
test-git-hook

πŸ›
testation21

πŸ’» πŸ›
thanosa

πŸ›
tiandiyixian

πŸ›
tobwoerk

πŸ› -
tprouvot

πŸ› +
tprouvot

πŸ›
trentchilders

πŸ›
triandicAnt

πŸ›
trishul14

πŸ›
tsui

πŸ›
winhkey

πŸ›
witherspore

πŸ› -
wjljack

πŸ› +
wjljack

πŸ›
wuchiuwong

πŸ›
xingsong

πŸ›
xioayuge

πŸ›
xnYi9wRezm

πŸ’» πŸ›
xuanuy

πŸ›
xyf0921

πŸ› -
yalechen-cyw3

πŸ› +
yalechen-cyw3

πŸ›
yasuharu-sato

πŸ›
zenglian

πŸ›
zgrzyt93

πŸ’» πŸ›
zh3ng

πŸ›
zt_soft

πŸ›
ztt79

πŸ› -
zzzzfeng

πŸ› +
zzzzfeng

πŸ›
ÁrpÑd MagosÑnyi

πŸ›
任贡杰

πŸ› From 15f9ca6d3f6a5fdc3ff67960881e5a39fa7ca3a3 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Sat, 25 Sep 2021 09:03:31 +0000 Subject: [PATCH 07/11] docs: update .all-contributorsrc [skip ci] --- .all-contributorsrc | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 163b1a1c8c..49cbdc61ba 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -987,7 +987,8 @@ "avatar_url": "https://avatars.githubusercontent.com/u/12729644?v=4", "profile": "https://github.com/Clint-Chester", "contributions": [ - "code", "bug" + "code", + "bug" ] }, { @@ -6427,8 +6428,18 @@ "contributions": [ "bug" ] + }, + { + "login": "kevingnet", + "name": "Kevin Guerra", + "avatar_url": "https://avatars.githubusercontent.com/u/5151740?v=4", + "profile": "https://github.com/kevingnet", + "contributions": [ + "code" + ] } ], "contributorsPerLine": 7, - "contributorsSortAlphabetically": true + "contributorsSortAlphabetically": true, + "skipCi": true } From bc5b6b9801b2e154ede93ce5c3657b293148b372 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 13:34:04 +0200 Subject: [PATCH 08/11] Prepare pmd release 6.39.0 --- docs/_config.yml | 2 +- docs/pages/next_major_development.md | 4 ++++ docs/pages/release_notes.md | 7 +++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index 1c09b2cb15..9228e4f6da 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,7 +1,7 @@ repository: pmd/pmd pmd: - version: 6.39.0-SNAPSHOT + version: 6.39.0 previous_version: 6.38.0 date: 25-September-2021 release_type: minor diff --git a/docs/pages/next_major_development.md b/docs/pages/next_major_development.md index 7e9878aac1..74e94c474e 100644 --- a/docs/pages/next_major_development.md +++ b/docs/pages/next_major_development.md @@ -125,6 +125,10 @@ the breaking API changes will be performed in 7.0.0. an API is tagged as `@Deprecated` or not in the latest minor release. During the development of 7.0.0, we may decide to remove some APIs that were not tagged as deprecated, though we'll try to avoid it." %} +#### 6.39.0 + +No changes. + #### 6.38.0 No changes. diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index 1adde2f5be..880b93105f 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -35,9 +35,16 @@ See [credits](https://pmd.github.io/latest/pmd_projectdocs_credits.html) for our ### API Changes +No changes. + ### External Contributions * [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers - [Kevin Guerra](https://github.com/kevingnet) +### Stats +* 37 commits +* 10 closed tickets & PRs +* Days since last release: 27 + {% endtocmaker %} From 90b051bfff7ca4e1a8063e23281214cf919791ec Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 13:46:04 +0200 Subject: [PATCH 09/11] [maven-release-plugin] prepare release pmd_releases/6.39.0 --- pmd-apex-jorje/pom.xml | 2 +- pmd-apex/pom.xml | 2 +- pmd-core/pom.xml | 2 +- pmd-cpp/pom.xml | 2 +- pmd-cs/pom.xml | 2 +- pmd-dart/pom.xml | 2 +- pmd-dist/pom.xml | 2 +- pmd-doc/pom.xml | 2 +- pmd-fortran/pom.xml | 2 +- pmd-go/pom.xml | 2 +- pmd-groovy/pom.xml | 2 +- pmd-java/pom.xml | 2 +- pmd-java8/pom.xml | 2 +- pmd-javascript/pom.xml | 2 +- pmd-jsp/pom.xml | 2 +- pmd-kotlin/pom.xml | 2 +- pmd-lang-test/pom.xml | 2 +- pmd-lua/pom.xml | 2 +- pmd-matlab/pom.xml | 2 +- pmd-modelica/pom.xml | 2 +- pmd-objectivec/pom.xml | 2 +- pmd-perl/pom.xml | 2 +- pmd-php/pom.xml | 2 +- pmd-plsql/pom.xml | 2 +- pmd-python/pom.xml | 2 +- pmd-ruby/pom.xml | 2 +- pmd-scala-modules/pmd-scala-common/pom.xml | 2 +- pmd-scala-modules/pmd-scala_2.12/pom.xml | 2 +- pmd-scala-modules/pmd-scala_2.13/pom.xml | 2 +- pmd-scala/pom.xml | 2 +- pmd-swift/pom.xml | 2 +- pmd-test/pom.xml | 2 +- pmd-visualforce/pom.xml | 2 +- pmd-vm/pom.xml | 2 +- pmd-xml/pom.xml | 2 +- pom.xml | 6 +++--- 36 files changed, 38 insertions(+), 38 deletions(-) diff --git a/pmd-apex-jorje/pom.xml b/pmd-apex-jorje/pom.xml index 824781c888..dba5d33fb6 100644 --- a/pmd-apex-jorje/pom.xml +++ b/pmd-apex-jorje/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-apex/pom.xml b/pmd-apex/pom.xml index a237d22c10..37ab048320 100644 --- a/pmd-apex/pom.xml +++ b/pmd-apex/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-core/pom.xml b/pmd-core/pom.xml index 21ba064316..3c45c5e34b 100644 --- a/pmd-core/pom.xml +++ b/pmd-core/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-cpp/pom.xml b/pmd-cpp/pom.xml index ba1caf686a..ceb78422c2 100644 --- a/pmd-cpp/pom.xml +++ b/pmd-cpp/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-cs/pom.xml b/pmd-cs/pom.xml index efbf30aa36..769142ea2b 100644 --- a/pmd-cs/pom.xml +++ b/pmd-cs/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-dart/pom.xml b/pmd-dart/pom.xml index bfc7940b4a..69e81d8c96 100644 --- a/pmd-dart/pom.xml +++ b/pmd-dart/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-dist/pom.xml b/pmd-dist/pom.xml index 1e6d52d9ea..fb88efd10f 100644 --- a/pmd-dist/pom.xml +++ b/pmd-dist/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-doc/pom.xml b/pmd-doc/pom.xml index 8899408858..f365ccd219 100644 --- a/pmd-doc/pom.xml +++ b/pmd-doc/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-fortran/pom.xml b/pmd-fortran/pom.xml index 41841531ee..0adafa5457 100644 --- a/pmd-fortran/pom.xml +++ b/pmd-fortran/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-go/pom.xml b/pmd-go/pom.xml index 6c815d641e..de8cc39574 100644 --- a/pmd-go/pom.xml +++ b/pmd-go/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-groovy/pom.xml b/pmd-groovy/pom.xml index 5f1f1906dd..563bec4fbc 100644 --- a/pmd-groovy/pom.xml +++ b/pmd-groovy/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-java/pom.xml b/pmd-java/pom.xml index de21159108..c5096342af 100644 --- a/pmd-java/pom.xml +++ b/pmd-java/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-java8/pom.xml b/pmd-java8/pom.xml index 810b45c57d..42b883fda1 100644 --- a/pmd-java8/pom.xml +++ b/pmd-java8/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-javascript/pom.xml b/pmd-javascript/pom.xml index 5c7e3cdc08..5a5d468b72 100644 --- a/pmd-javascript/pom.xml +++ b/pmd-javascript/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-jsp/pom.xml b/pmd-jsp/pom.xml index b4afbe5cc3..2b48b16a1a 100644 --- a/pmd-jsp/pom.xml +++ b/pmd-jsp/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-kotlin/pom.xml b/pmd-kotlin/pom.xml index e8d27046c5..3060d61bc0 100644 --- a/pmd-kotlin/pom.xml +++ b/pmd-kotlin/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-lang-test/pom.xml b/pmd-lang-test/pom.xml index a87a15a527..829ac15a14 100644 --- a/pmd-lang-test/pom.xml +++ b/pmd-lang-test/pom.xml @@ -12,7 +12,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-lua/pom.xml b/pmd-lua/pom.xml index 60c1a09194..e1c4bfa862 100644 --- a/pmd-lua/pom.xml +++ b/pmd-lua/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-matlab/pom.xml b/pmd-matlab/pom.xml index 44b504386a..071d6d0029 100644 --- a/pmd-matlab/pom.xml +++ b/pmd-matlab/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-modelica/pom.xml b/pmd-modelica/pom.xml index 5a23db9a16..2032b0e8a9 100644 --- a/pmd-modelica/pom.xml +++ b/pmd-modelica/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-objectivec/pom.xml b/pmd-objectivec/pom.xml index 78e8dd6c82..19e074ea9f 100644 --- a/pmd-objectivec/pom.xml +++ b/pmd-objectivec/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-perl/pom.xml b/pmd-perl/pom.xml index 2ec89ac4c5..7704d4e9a2 100644 --- a/pmd-perl/pom.xml +++ b/pmd-perl/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-php/pom.xml b/pmd-php/pom.xml index 688298ba20..611b77daed 100644 --- a/pmd-php/pom.xml +++ b/pmd-php/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-plsql/pom.xml b/pmd-plsql/pom.xml index 5155396d01..ac46d22176 100644 --- a/pmd-plsql/pom.xml +++ b/pmd-plsql/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-python/pom.xml b/pmd-python/pom.xml index a8a5031698..68da8780d8 100644 --- a/pmd-python/pom.xml +++ b/pmd-python/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-ruby/pom.xml b/pmd-ruby/pom.xml index 1e95ffd567..c77593c931 100644 --- a/pmd-ruby/pom.xml +++ b/pmd-ruby/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-scala-modules/pmd-scala-common/pom.xml b/pmd-scala-modules/pmd-scala-common/pom.xml index 102dfd20e6..09b4d05c71 100644 --- a/pmd-scala-modules/pmd-scala-common/pom.xml +++ b/pmd-scala-modules/pmd-scala-common/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../.. diff --git a/pmd-scala-modules/pmd-scala_2.12/pom.xml b/pmd-scala-modules/pmd-scala_2.12/pom.xml index 3ca7828336..00e5e902ee 100644 --- a/pmd-scala-modules/pmd-scala_2.12/pom.xml +++ b/pmd-scala-modules/pmd-scala_2.12/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd-scala-common - 6.39.0-SNAPSHOT + 6.39.0 ../pmd-scala-common diff --git a/pmd-scala-modules/pmd-scala_2.13/pom.xml b/pmd-scala-modules/pmd-scala_2.13/pom.xml index 917a2be7fd..76dde6233e 100644 --- a/pmd-scala-modules/pmd-scala_2.13/pom.xml +++ b/pmd-scala-modules/pmd-scala_2.13/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd-scala-common - 6.39.0-SNAPSHOT + 6.39.0 ../pmd-scala-common diff --git a/pmd-scala/pom.xml b/pmd-scala/pom.xml index cb195d9de5..ffdd3426ee 100644 --- a/pmd-scala/pom.xml +++ b/pmd-scala/pom.xml @@ -9,7 +9,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-swift/pom.xml b/pmd-swift/pom.xml index cf2a6b8ec7..0aac6925f8 100644 --- a/pmd-swift/pom.xml +++ b/pmd-swift/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-test/pom.xml b/pmd-test/pom.xml index e477838f3e..a419f7e998 100644 --- a/pmd-test/pom.xml +++ b/pmd-test/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-visualforce/pom.xml b/pmd-visualforce/pom.xml index 244d643bd8..5290ca8a01 100644 --- a/pmd-visualforce/pom.xml +++ b/pmd-visualforce/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-vm/pom.xml b/pmd-vm/pom.xml index 83dc162d3b..385eea56a4 100644 --- a/pmd-vm/pom.xml +++ b/pmd-vm/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pmd-xml/pom.xml b/pmd-xml/pom.xml index aac6c46cae..d4450472eb 100644 --- a/pmd-xml/pom.xml +++ b/pmd-xml/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 ../ diff --git a/pom.xml b/pom.xml index 16b3701244..d488869cf8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 net.sourceforge.pmd pmd - 6.39.0-SNAPSHOT + 6.39.0 pom PMD @@ -55,7 +55,7 @@ scm:git:git://github.com/pmd/pmd.git scm:git:ssh://git@github.com/pmd/pmd.git https://github.com/pmd/pmd - HEAD + pmd_releases/6.39.0 @@ -76,7 +76,7 @@ - 2021-08-28T15:27:18Z + 2021-09-25T11:34:20Z 7 From 0399bbbfc84e9eea3fa80c0d9118383ceaf307f7 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 13:46:09 +0200 Subject: [PATCH 10/11] [maven-release-plugin] prepare for next development iteration --- pmd-apex-jorje/pom.xml | 2 +- pmd-apex/pom.xml | 2 +- pmd-core/pom.xml | 2 +- pmd-cpp/pom.xml | 2 +- pmd-cs/pom.xml | 2 +- pmd-dart/pom.xml | 2 +- pmd-dist/pom.xml | 2 +- pmd-doc/pom.xml | 2 +- pmd-fortran/pom.xml | 2 +- pmd-go/pom.xml | 2 +- pmd-groovy/pom.xml | 2 +- pmd-java/pom.xml | 2 +- pmd-java8/pom.xml | 2 +- pmd-javascript/pom.xml | 2 +- pmd-jsp/pom.xml | 2 +- pmd-kotlin/pom.xml | 2 +- pmd-lang-test/pom.xml | 2 +- pmd-lua/pom.xml | 2 +- pmd-matlab/pom.xml | 2 +- pmd-modelica/pom.xml | 2 +- pmd-objectivec/pom.xml | 2 +- pmd-perl/pom.xml | 2 +- pmd-php/pom.xml | 2 +- pmd-plsql/pom.xml | 2 +- pmd-python/pom.xml | 2 +- pmd-ruby/pom.xml | 2 +- pmd-scala-modules/pmd-scala-common/pom.xml | 2 +- pmd-scala-modules/pmd-scala_2.12/pom.xml | 2 +- pmd-scala-modules/pmd-scala_2.13/pom.xml | 2 +- pmd-scala/pom.xml | 2 +- pmd-swift/pom.xml | 2 +- pmd-test/pom.xml | 2 +- pmd-visualforce/pom.xml | 2 +- pmd-vm/pom.xml | 2 +- pmd-xml/pom.xml | 2 +- pom.xml | 6 +++--- 36 files changed, 38 insertions(+), 38 deletions(-) diff --git a/pmd-apex-jorje/pom.xml b/pmd-apex-jorje/pom.xml index dba5d33fb6..657157158b 100644 --- a/pmd-apex-jorje/pom.xml +++ b/pmd-apex-jorje/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-apex/pom.xml b/pmd-apex/pom.xml index 37ab048320..c3d085fa0a 100644 --- a/pmd-apex/pom.xml +++ b/pmd-apex/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-core/pom.xml b/pmd-core/pom.xml index 3c45c5e34b..8e46e8eccd 100644 --- a/pmd-core/pom.xml +++ b/pmd-core/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-cpp/pom.xml b/pmd-cpp/pom.xml index ceb78422c2..8cab6d8a78 100644 --- a/pmd-cpp/pom.xml +++ b/pmd-cpp/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-cs/pom.xml b/pmd-cs/pom.xml index 769142ea2b..f59155d241 100644 --- a/pmd-cs/pom.xml +++ b/pmd-cs/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-dart/pom.xml b/pmd-dart/pom.xml index 69e81d8c96..b9de1cb732 100644 --- a/pmd-dart/pom.xml +++ b/pmd-dart/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-dist/pom.xml b/pmd-dist/pom.xml index fb88efd10f..183156be35 100644 --- a/pmd-dist/pom.xml +++ b/pmd-dist/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-doc/pom.xml b/pmd-doc/pom.xml index f365ccd219..dab0204a66 100644 --- a/pmd-doc/pom.xml +++ b/pmd-doc/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-fortran/pom.xml b/pmd-fortran/pom.xml index 0adafa5457..480f977cf8 100644 --- a/pmd-fortran/pom.xml +++ b/pmd-fortran/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-go/pom.xml b/pmd-go/pom.xml index de8cc39574..2480f0b85e 100644 --- a/pmd-go/pom.xml +++ b/pmd-go/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-groovy/pom.xml b/pmd-groovy/pom.xml index 563bec4fbc..0b4724ff97 100644 --- a/pmd-groovy/pom.xml +++ b/pmd-groovy/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-java/pom.xml b/pmd-java/pom.xml index c5096342af..5909ac916a 100644 --- a/pmd-java/pom.xml +++ b/pmd-java/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-java8/pom.xml b/pmd-java8/pom.xml index 42b883fda1..a510877bd7 100644 --- a/pmd-java8/pom.xml +++ b/pmd-java8/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-javascript/pom.xml b/pmd-javascript/pom.xml index 5a5d468b72..f17a1912ee 100644 --- a/pmd-javascript/pom.xml +++ b/pmd-javascript/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-jsp/pom.xml b/pmd-jsp/pom.xml index 2b48b16a1a..96fe6b80aa 100644 --- a/pmd-jsp/pom.xml +++ b/pmd-jsp/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-kotlin/pom.xml b/pmd-kotlin/pom.xml index 3060d61bc0..6784fa6c6a 100644 --- a/pmd-kotlin/pom.xml +++ b/pmd-kotlin/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-lang-test/pom.xml b/pmd-lang-test/pom.xml index 829ac15a14..d93e7b5520 100644 --- a/pmd-lang-test/pom.xml +++ b/pmd-lang-test/pom.xml @@ -12,7 +12,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-lua/pom.xml b/pmd-lua/pom.xml index e1c4bfa862..a19c235e91 100644 --- a/pmd-lua/pom.xml +++ b/pmd-lua/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-matlab/pom.xml b/pmd-matlab/pom.xml index 071d6d0029..35c0cd0ac8 100644 --- a/pmd-matlab/pom.xml +++ b/pmd-matlab/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-modelica/pom.xml b/pmd-modelica/pom.xml index 2032b0e8a9..042991e8e3 100644 --- a/pmd-modelica/pom.xml +++ b/pmd-modelica/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-objectivec/pom.xml b/pmd-objectivec/pom.xml index 19e074ea9f..dcf2d2a594 100644 --- a/pmd-objectivec/pom.xml +++ b/pmd-objectivec/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-perl/pom.xml b/pmd-perl/pom.xml index 7704d4e9a2..2af94f3b73 100644 --- a/pmd-perl/pom.xml +++ b/pmd-perl/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-php/pom.xml b/pmd-php/pom.xml index 611b77daed..68357c7f2b 100644 --- a/pmd-php/pom.xml +++ b/pmd-php/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-plsql/pom.xml b/pmd-plsql/pom.xml index ac46d22176..d4620d529b 100644 --- a/pmd-plsql/pom.xml +++ b/pmd-plsql/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-python/pom.xml b/pmd-python/pom.xml index 68da8780d8..be734d51d8 100644 --- a/pmd-python/pom.xml +++ b/pmd-python/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-ruby/pom.xml b/pmd-ruby/pom.xml index c77593c931..175598d575 100644 --- a/pmd-ruby/pom.xml +++ b/pmd-ruby/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-scala-modules/pmd-scala-common/pom.xml b/pmd-scala-modules/pmd-scala-common/pom.xml index 09b4d05c71..3119e76962 100644 --- a/pmd-scala-modules/pmd-scala-common/pom.xml +++ b/pmd-scala-modules/pmd-scala-common/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../.. diff --git a/pmd-scala-modules/pmd-scala_2.12/pom.xml b/pmd-scala-modules/pmd-scala_2.12/pom.xml index 00e5e902ee..645af01447 100644 --- a/pmd-scala-modules/pmd-scala_2.12/pom.xml +++ b/pmd-scala-modules/pmd-scala_2.12/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd-scala-common - 6.39.0 + 6.40.0-SNAPSHOT ../pmd-scala-common diff --git a/pmd-scala-modules/pmd-scala_2.13/pom.xml b/pmd-scala-modules/pmd-scala_2.13/pom.xml index 76dde6233e..2e8fa01ad9 100644 --- a/pmd-scala-modules/pmd-scala_2.13/pom.xml +++ b/pmd-scala-modules/pmd-scala_2.13/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd-scala-common - 6.39.0 + 6.40.0-SNAPSHOT ../pmd-scala-common diff --git a/pmd-scala/pom.xml b/pmd-scala/pom.xml index ffdd3426ee..8048cb028c 100644 --- a/pmd-scala/pom.xml +++ b/pmd-scala/pom.xml @@ -9,7 +9,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-swift/pom.xml b/pmd-swift/pom.xml index 0aac6925f8..ec86c99039 100644 --- a/pmd-swift/pom.xml +++ b/pmd-swift/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-test/pom.xml b/pmd-test/pom.xml index a419f7e998..f8579e608a 100644 --- a/pmd-test/pom.xml +++ b/pmd-test/pom.xml @@ -8,7 +8,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-visualforce/pom.xml b/pmd-visualforce/pom.xml index 5290ca8a01..0f8b5ae11f 100644 --- a/pmd-visualforce/pom.xml +++ b/pmd-visualforce/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-vm/pom.xml b/pmd-vm/pom.xml index 385eea56a4..32c549ff9b 100644 --- a/pmd-vm/pom.xml +++ b/pmd-vm/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pmd-xml/pom.xml b/pmd-xml/pom.xml index d4450472eb..4564bdcdf2 100644 --- a/pmd-xml/pom.xml +++ b/pmd-xml/pom.xml @@ -7,7 +7,7 @@ net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT ../ diff --git a/pom.xml b/pom.xml index d488869cf8..06bbd8f183 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 net.sourceforge.pmd pmd - 6.39.0 + 6.40.0-SNAPSHOT pom PMD @@ -55,7 +55,7 @@ scm:git:git://github.com/pmd/pmd.git scm:git:ssh://git@github.com/pmd/pmd.git https://github.com/pmd/pmd - pmd_releases/6.39.0 + HEAD @@ -76,7 +76,7 @@ - 2021-09-25T11:34:20Z + 2021-09-25T11:46:09Z 7 From bc782454f112baa0a12a7c055fe9b8e932c26ca6 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 25 Sep 2021 13:47:33 +0200 Subject: [PATCH 11/11] Prepare next development version --- docs/_config.yml | 6 ++-- docs/pages/release_notes.md | 26 ----------------- docs/pages/release_notes_old.md | 49 +++++++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+), 29 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index 9228e4f6da..4ae01bd9ee 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,9 +1,9 @@ repository: pmd/pmd pmd: - version: 6.39.0 - previous_version: 6.38.0 - date: 25-September-2021 + version: 6.40.0-SNAPSHOT + previous_version: 6.39.0 + date: 30-October-2021 release_type: minor # release types: major, minor, bugfix diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index 880b93105f..b8f8783555 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -14,37 +14,11 @@ This is a {{ site.pmd.release_type }} release. ### New and noteworthy -#### All Contributors - -PMD follows the [All Contributors](https://allcontributors.org/) specification. -Contributions of any kind welcome! - -See [credits](https://pmd.github.io/latest/pmd_projectdocs_credits.html) for our complete contributors list. - ### Fixed Issues -* core - * [#3499](https://github.com/pmd/pmd/pull/3499): \[core] Fix XPath rulechain with combined node tests -* java-errorprone - * [#3493](https://github.com/pmd/pmd/pull/3493): \[java] AvoidAccessibilityAlteration: add tests and fix rule -* javascript - * [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers -* plsql - * [#3487](https://github.com/pmd/pmd/issues/3487): \[plsql] Parsing exception OPEN ref_cursor_name FOR statement - * [#3515](https://github.com/pmd/pmd/issues/3515): \[plsql] Parsing exception SELECT...INTO on Associative Arrays Types - ### API Changes -No changes. - ### External Contributions -* [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers - [Kevin Guerra](https://github.com/kevingnet) - -### Stats -* 37 commits -* 10 closed tickets & PRs -* Days since last release: 27 - {% endtocmaker %} diff --git a/docs/pages/release_notes_old.md b/docs/pages/release_notes_old.md index ea280928cd..ffc19589ed 100644 --- a/docs/pages/release_notes_old.md +++ b/docs/pages/release_notes_old.md @@ -5,6 +5,55 @@ permalink: pmd_release_notes_old.html Previous versions of PMD can be downloaded here: https://github.com/pmd/pmd/releases +## 25-September-2021 - 6.39.0 + +The PMD team is pleased to announce PMD 6.39.0. + +This is a minor release. + +### Table Of Contents + +* [New and noteworthy](#new-and-noteworthy) + * [All Contributors](#all-contributors) +* [Fixed Issues](#fixed-issues) +* [API Changes](#api-changes) +* [External Contributions](#external-contributions) +* [Stats](#stats) + +### New and noteworthy + +#### All Contributors + +PMD follows the [All Contributors](https://allcontributors.org/) specification. +Contributions of any kind welcome! + +See [credits](https://pmd.github.io/latest/pmd_projectdocs_credits.html) for our complete contributors list. + +### Fixed Issues + +* core + * [#3499](https://github.com/pmd/pmd/pull/3499): \[core] Fix XPath rulechain with combined node tests +* java-errorprone + * [#3493](https://github.com/pmd/pmd/pull/3493): \[java] AvoidAccessibilityAlteration: add tests and fix rule +* javascript + * [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers +* plsql + * [#3487](https://github.com/pmd/pmd/issues/3487): \[plsql] Parsing exception OPEN ref_cursor_name FOR statement + * [#3515](https://github.com/pmd/pmd/issues/3515): \[plsql] Parsing exception SELECT...INTO on Associative Arrays Types + +### API Changes + +No changes. + +### External Contributions + +* [#3516](https://github.com/pmd/pmd/pull/3516): \[javascript] NPE while creating rule violation when specifying explicit line numbers - [Kevin Guerra](https://github.com/kevingnet) + +### Stats +* 37 commits +* 10 closed tickets & PRs +* Days since last release: 27 + ## 28-August-2021 - 6.38.0 The PMD team is pleased to announce PMD 6.38.0.