diff --git a/docs/_config.yml b/docs/_config.yml
index fd664fbf41..9bb2dec84c 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -1,9 +1,9 @@
repository: pmd/pmd
pmd:
- version: 7.2.0
- previous_version: 7.1.0
- date: 31-May-2024
+ version: 7.3.0-SNAPSHOT
+ previous_version: 7.2.0
+ date: 28-June-2024
release_type: minor
# release types: major, minor, bugfix
diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md
index e8d4a701dd..e8d7cdbf90 100644
--- a/docs/pages/release_notes.md
+++ b/docs/pages/release_notes.md
@@ -14,68 +14,11 @@ This is a {{ site.pmd.release_type }} release.
### 🚀 New and noteworthy
-#### Collections exposed as XPath attributes
-
-Up to now, all AST node getters would be exposed to XPath, as long as the return type was a primitive (boxed or unboxed), String or Enum. That meant that collections, even of these basic types, were not exposed, so for instance accessing Apex's `ASTUserClass.getInterfaceNames()` to list the interfaces implemented by a class was impossible from XPath, and would require writing a Java rule to check it.
-
-Since this release, PMD will also expose any getter returning a collection of any supported type as a sequence through an XPath attribute. They would require to use apropriate XQuery functions to manipulate the sequence. So for instance, to detect any given `ASTUserClass` in Apex that implements `Queueable`, it is now possible to write:
-
-```xml
-/UserClass[@InterfaceNames = 'Queueable']
-```
-
-#### Updated PMD Designer
-
-This PMD release ships a new version of the pmd-designer.
-For the changes, see [PMD Designer Changelog (7.2.0)](https://github.com/pmd/pmd-designer/releases/tag/7.2.0).
-
### 🐛 Fixed Issues
-* core
- * [#4467](https://github.com/pmd/pmd/issues/4467): \[core] Expose collections from getters as XPath sequence attributes
- * [#4978](https://github.com/pmd/pmd/issues/4978): \[core] Referenced Rulesets do not emit details on validation errors
- * [#4983](https://github.com/pmd/pmd/pull/4983): \[cpd] Fix CPD crashes about unicode escapes
- * [#5009](https://github.com/pmd/pmd/issues/5009): \[core] Kotest tests aren't picked up by surefire
-* java
- * [#4912](https://github.com/pmd/pmd/issues/4912): \[java] Unable to parse some Java9+ resource references
- * [#4973](https://github.com/pmd/pmd/pull/4973): \[java] Stop parsing Java for CPD
- * [#4980](https://github.com/pmd/pmd/issues/4980): \[java] Bad intersection, unrelated class types java.lang.Object\[] and java.lang.Number
- * [#4988](https://github.com/pmd/pmd/pull/4988): \[java] Fix impl of ASTVariableId::isResourceDeclaration / VariableId/@ResourceDeclaration
- * [#4990](https://github.com/pmd/pmd/issues/4990): \[java] Add an attribute @PackageQualifier to ASTClassType
- * [#5006](https://github.com/pmd/pmd/issues/5006): \[java] Bad intersection, unrelated class types Child and Parent extends Child>
- * [#5029](https://github.com/pmd/pmd/issues/5029): \[java] PMD 7.x throws stack overflow in TypeOps$ProjectionVisitor while parsing a Java class
-* java-bestpractices
- * [#4278](https://github.com/pmd/pmd/issues/4278): \[java] UnusedPrivateMethod FP with Junit 5 @MethodSource and default factory method name
- * [#4852](https://github.com/pmd/pmd/issues/4852): \[java] ReplaceVectorWithList false-positive (neither Vector nor List usage)
- * [#4975](https://github.com/pmd/pmd/issues/4975): \[java] UnusedPrivateMethod false positive when using @MethodSource on a @Nested test
- * [#4985](https://github.com/pmd/pmd/issues/4985): \[java] UnusedPrivateMethod false-positive / method reference in combination with custom object
-* java-codestyle
- * [#1619](https://github.com/pmd/pmd/issues/1619): \[java] LocalVariableCouldBeFinal on 'size' variable in for loop
- * [#3122](https://github.com/pmd/pmd/issues/3122): \[java] LocalVariableCouldBeFinal should consider blank local variables
- * [#4903](https://github.com/pmd/pmd/issues/4903): \[java] UnnecessaryBoxing, but explicit conversion is necessary
- * [#4924](https://github.com/pmd/pmd/issues/4924): \[java] UnnecessaryBoxing false positive in PMD 7.0.0 in lambda
- * [#4930](https://github.com/pmd/pmd/issues/4930): \[java] EmptyControlStatement should not allow empty try with concise resources
- * [#4954](https://github.com/pmd/pmd/issues/4954): \[java] LocalVariableNamingConventions should allow unnamed variables by default
- * [#5028](https://github.com/pmd/pmd/issues/5028): \[java] FormalParameterNamingConventions should accept unnamed parameters by default
-* java-errorprone
- * [#4042](https://github.com/pmd/pmd/issues/4042): \[java] A false negative about the rule StringBufferInstantiationWithChar
- * [#5007](https://github.com/pmd/pmd/issues/5007): \[java] AvoidUsingOctalValues triggers on non-octal double literals with a leading 0
-* java-multithreading
- * [#2368](https://github.com/pmd/pmd/issues/2368): \[java] False positive UnsynchronizedStaticFormatter in static initializer
### 🚨 API Changes
-#### Deprecated API
-
-* pmd-java
- * {% jdoc !!java::lang.java.ast.ASTResource#getStableName() %} and the corresponding attribute `@StableName`
-
### ✨ External Contributions
-* [#5020](https://github.com/pmd/pmd/issues/5020): \[java] Fix AvoidUsingOctalValues false-positive - [Gold856](https://github.com/Gold856) (@Gold856)
-
-### 📈 Stats
-* 152 commits
-* 46 closed tickets & PRs
-* Days since last release: 35
-
{% endtocmaker %}
+
diff --git a/docs/pages/release_notes_old.md b/docs/pages/release_notes_old.md
index b4eaab15bd..4bd8722d4a 100644
--- a/docs/pages/release_notes_old.md
+++ b/docs/pages/release_notes_old.md
@@ -5,6 +5,89 @@ permalink: pmd_release_notes_old.html
Previous versions of PMD can be downloaded here: [Releases - pmd/pmd (GitHub)](https://github.com/pmd/pmd/releases)
+## 31-May-2024 - 7.2.0
+
+The PMD team is pleased to announce PMD 7.2.0.
+
+This is a minor release.
+
+### Table Of Contents
+
+* [🚀 New and noteworthy](#new-and-noteworthy)
+ * [Collections exposed as XPath attributes](#collections-exposed-as-xpath-attributes)
+ * [Updated PMD Designer](#updated-pmd-designer)
+* [🐛 Fixed Issues](#fixed-issues)
+* [🚨 API Changes](#api-changes)
+ * [Deprecated API](#deprecated-api)
+* [✨ External Contributions](#external-contributions)
+* [📈 Stats](#stats)
+
+### 🚀 New and noteworthy
+
+#### Collections exposed as XPath attributes
+
+Up to now, all AST node getters would be exposed to XPath, as long as the return type was a primitive (boxed or unboxed), String or Enum. That meant that collections, even of these basic types, were not exposed, so for instance accessing Apex's `ASTUserClass.getInterfaceNames()` to list the interfaces implemented by a class was impossible from XPath, and would require writing a Java rule to check it.
+
+Since this release, PMD will also expose any getter returning a collection of any supported type as a sequence through an XPath attribute. They would require to use apropriate XQuery functions to manipulate the sequence. So for instance, to detect any given `ASTUserClass` in Apex that implements `Queueable`, it is now possible to write:
+
+```xml
+/UserClass[@InterfaceNames = 'Queueable']
+```
+
+#### Updated PMD Designer
+
+This PMD release ships a new version of the pmd-designer.
+For the changes, see [PMD Designer Changelog (7.2.0)](https://github.com/pmd/pmd-designer/releases/tag/7.2.0).
+
+### 🐛 Fixed Issues
+* core
+ * [#4467](https://github.com/pmd/pmd/issues/4467): \[core] Expose collections from getters as XPath sequence attributes
+ * [#4978](https://github.com/pmd/pmd/issues/4978): \[core] Referenced Rulesets do not emit details on validation errors
+ * [#4983](https://github.com/pmd/pmd/pull/4983): \[cpd] Fix CPD crashes about unicode escapes
+ * [#5009](https://github.com/pmd/pmd/issues/5009): \[core] Kotest tests aren't picked up by surefire
+* java
+ * [#4912](https://github.com/pmd/pmd/issues/4912): \[java] Unable to parse some Java9+ resource references
+ * [#4973](https://github.com/pmd/pmd/pull/4973): \[java] Stop parsing Java for CPD
+ * [#4980](https://github.com/pmd/pmd/issues/4980): \[java] Bad intersection, unrelated class types java.lang.Object\[] and java.lang.Number
+ * [#4988](https://github.com/pmd/pmd/pull/4988): \[java] Fix impl of ASTVariableId::isResourceDeclaration / VariableId/@ResourceDeclaration
+ * [#4990](https://github.com/pmd/pmd/issues/4990): \[java] Add an attribute @PackageQualifier to ASTClassType
+ * [#5006](https://github.com/pmd/pmd/issues/5006): \[java] Bad intersection, unrelated class types Child and Parent extends Child>
+ * [#5029](https://github.com/pmd/pmd/issues/5029): \[java] PMD 7.x throws stack overflow in TypeOps$ProjectionVisitor while parsing a Java class
+* java-bestpractices
+ * [#4278](https://github.com/pmd/pmd/issues/4278): \[java] UnusedPrivateMethod FP with Junit 5 @MethodSource and default factory method name
+ * [#4852](https://github.com/pmd/pmd/issues/4852): \[java] ReplaceVectorWithList false-positive (neither Vector nor List usage)
+ * [#4975](https://github.com/pmd/pmd/issues/4975): \[java] UnusedPrivateMethod false positive when using @MethodSource on a @Nested test
+ * [#4985](https://github.com/pmd/pmd/issues/4985): \[java] UnusedPrivateMethod false-positive / method reference in combination with custom object
+* java-codestyle
+ * [#1619](https://github.com/pmd/pmd/issues/1619): \[java] LocalVariableCouldBeFinal on 'size' variable in for loop
+ * [#3122](https://github.com/pmd/pmd/issues/3122): \[java] LocalVariableCouldBeFinal should consider blank local variables
+ * [#4903](https://github.com/pmd/pmd/issues/4903): \[java] UnnecessaryBoxing, but explicit conversion is necessary
+ * [#4924](https://github.com/pmd/pmd/issues/4924): \[java] UnnecessaryBoxing false positive in PMD 7.0.0 in lambda
+ * [#4930](https://github.com/pmd/pmd/issues/4930): \[java] EmptyControlStatement should not allow empty try with concise resources
+ * [#4954](https://github.com/pmd/pmd/issues/4954): \[java] LocalVariableNamingConventions should allow unnamed variables by default
+ * [#5028](https://github.com/pmd/pmd/issues/5028): \[java] FormalParameterNamingConventions should accept unnamed parameters by default
+* java-errorprone
+ * [#4042](https://github.com/pmd/pmd/issues/4042): \[java] A false negative about the rule StringBufferInstantiationWithChar
+ * [#5007](https://github.com/pmd/pmd/issues/5007): \[java] AvoidUsingOctalValues triggers on non-octal double literals with a leading 0
+* java-multithreading
+ * [#2368](https://github.com/pmd/pmd/issues/2368): \[java] False positive UnsynchronizedStaticFormatter in static initializer
+
+### 🚨 API Changes
+
+#### Deprecated API
+
+* pmd-java
+ * ASTResource#getStableName
and the corresponding attribute `@StableName`
+
+### ✨ External Contributions
+
+* [#5020](https://github.com/pmd/pmd/issues/5020): \[java] Fix AvoidUsingOctalValues false-positive - [Gold856](https://github.com/Gold856) (@Gold856)
+
+### 📈 Stats
+* 152 commits
+* 46 closed tickets & PRs
+* Days since last release: 35
+
## 26-April-2024 - 7.1.0
The PMD team is pleased to announce PMD 7.1.0.
diff --git a/pmd-ant/pom.xml b/pmd-ant/pom.xml
index d28f7c06e4..dc93238cd3 100644
--- a/pmd-ant/pom.xml
+++ b/pmd-ant/pom.xml
@@ -7,7 +7,7 @@
pmd
net.sourceforge.pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
4.0.0
diff --git a/pmd-apex/pom.xml b/pmd-apex/pom.xml
index 30d49d8f90..6346360e1d 100644
--- a/pmd-apex/pom.xml
+++ b/pmd-apex/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-cli/pom.xml b/pmd-cli/pom.xml
index 7eb3a5e724..e971574645 100644
--- a/pmd-cli/pom.xml
+++ b/pmd-cli/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-coco/pom.xml b/pmd-coco/pom.xml
index ee14507e27..bb12f86503 100644
--- a/pmd-coco/pom.xml
+++ b/pmd-coco/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-compat6/pom.xml b/pmd-compat6/pom.xml
index 09bff36dab..cf0c893b26 100644
--- a/pmd-compat6/pom.xml
+++ b/pmd-compat6/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
pmd-compat6
diff --git a/pmd-core/pom.xml b/pmd-core/pom.xml
index f1c7b1e86d..b5140a25fa 100644
--- a/pmd-core/pom.xml
+++ b/pmd-core/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-cpp/pom.xml b/pmd-cpp/pom.xml
index 2354bee920..9c430cc4f4 100644
--- a/pmd-cpp/pom.xml
+++ b/pmd-cpp/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-cs/pom.xml b/pmd-cs/pom.xml
index b35ff6d715..026de2bee2 100644
--- a/pmd-cs/pom.xml
+++ b/pmd-cs/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-dart/pom.xml b/pmd-dart/pom.xml
index 5c5c1e9996..47d2c87ad6 100644
--- a/pmd-dart/pom.xml
+++ b/pmd-dart/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-dist/pom.xml b/pmd-dist/pom.xml
index 649d40f25e..9f8e02fdf8 100644
--- a/pmd-dist/pom.xml
+++ b/pmd-dist/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-doc/pom.xml b/pmd-doc/pom.xml
index 72323c14e6..7ebb6d3d00 100644
--- a/pmd-doc/pom.xml
+++ b/pmd-doc/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-fortran/pom.xml b/pmd-fortran/pom.xml
index 7b7040bcb9..86e87edcb9 100644
--- a/pmd-fortran/pom.xml
+++ b/pmd-fortran/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-gherkin/pom.xml b/pmd-gherkin/pom.xml
index 6c06886317..a62a575cda 100644
--- a/pmd-gherkin/pom.xml
+++ b/pmd-gherkin/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-go/pom.xml b/pmd-go/pom.xml
index 477c14aa8d..d69f0d58af 100644
--- a/pmd-go/pom.xml
+++ b/pmd-go/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-groovy/pom.xml b/pmd-groovy/pom.xml
index 5c405f30d7..a700b821d9 100644
--- a/pmd-groovy/pom.xml
+++ b/pmd-groovy/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-html/pom.xml b/pmd-html/pom.xml
index 7d5318fa66..223deed571 100644
--- a/pmd-html/pom.xml
+++ b/pmd-html/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-java/pom.xml b/pmd-java/pom.xml
index 9f5dfd0fdb..ea6d0daefb 100644
--- a/pmd-java/pom.xml
+++ b/pmd-java/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-javascript/pom.xml b/pmd-javascript/pom.xml
index d1c674e8b6..4fa7fda466 100644
--- a/pmd-javascript/pom.xml
+++ b/pmd-javascript/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-jsp/pom.xml b/pmd-jsp/pom.xml
index f80e5143eb..68d2a90afb 100644
--- a/pmd-jsp/pom.xml
+++ b/pmd-jsp/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-julia/pom.xml b/pmd-julia/pom.xml
index f6db428b5a..bf449e6a41 100644
--- a/pmd-julia/pom.xml
+++ b/pmd-julia/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-kotlin/pom.xml b/pmd-kotlin/pom.xml
index d437e231ff..47bb2e54d2 100644
--- a/pmd-kotlin/pom.xml
+++ b/pmd-kotlin/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-lang-test/pom.xml b/pmd-lang-test/pom.xml
index 1bff3ef16d..a4a634f09c 100644
--- a/pmd-lang-test/pom.xml
+++ b/pmd-lang-test/pom.xml
@@ -12,7 +12,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-languages-deps/pom.xml b/pmd-languages-deps/pom.xml
index 93512a36c3..501f61a841 100644
--- a/pmd-languages-deps/pom.xml
+++ b/pmd-languages-deps/pom.xml
@@ -4,7 +4,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
pmd-languages-deps
diff --git a/pmd-lua/pom.xml b/pmd-lua/pom.xml
index 9f7228936a..23834ba393 100644
--- a/pmd-lua/pom.xml
+++ b/pmd-lua/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-matlab/pom.xml b/pmd-matlab/pom.xml
index 288d5d08bd..4b4e840b74 100644
--- a/pmd-matlab/pom.xml
+++ b/pmd-matlab/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-modelica/pom.xml b/pmd-modelica/pom.xml
index 09033b979d..5ee4d15a7a 100644
--- a/pmd-modelica/pom.xml
+++ b/pmd-modelica/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-objectivec/pom.xml b/pmd-objectivec/pom.xml
index 1dd7bf0a7e..3dab6880c0 100644
--- a/pmd-objectivec/pom.xml
+++ b/pmd-objectivec/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-perl/pom.xml b/pmd-perl/pom.xml
index 9b5d15fb31..e2a21f93ac 100644
--- a/pmd-perl/pom.xml
+++ b/pmd-perl/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-php/pom.xml b/pmd-php/pom.xml
index 08e86b38e8..1d98f18865 100644
--- a/pmd-php/pom.xml
+++ b/pmd-php/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-plsql/pom.xml b/pmd-plsql/pom.xml
index 29cc36da7f..f94aa65cfd 100644
--- a/pmd-plsql/pom.xml
+++ b/pmd-plsql/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-python/pom.xml b/pmd-python/pom.xml
index 3458ee1e81..1096c0ee06 100644
--- a/pmd-python/pom.xml
+++ b/pmd-python/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-ruby/pom.xml b/pmd-ruby/pom.xml
index 8885449b2f..605c3a4221 100644
--- a/pmd-ruby/pom.xml
+++ b/pmd-ruby/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-scala-modules/pmd-scala-common/pom.xml b/pmd-scala-modules/pmd-scala-common/pom.xml
index 17e30ae260..c7f99d9081 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
- 7.2.0
+ 7.3.0-SNAPSHOT
../../pom.xml
diff --git a/pmd-scala-modules/pmd-scala_2.12/pom.xml b/pmd-scala-modules/pmd-scala_2.12/pom.xml
index 3520f2de37..a217eb5904 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
- 7.2.0
+ 7.3.0-SNAPSHOT
../pmd-scala-common/pom.xml
diff --git a/pmd-scala-modules/pmd-scala_2.13/pom.xml b/pmd-scala-modules/pmd-scala_2.13/pom.xml
index a43cd14e21..7df4503d28 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
- 7.2.0
+ 7.3.0-SNAPSHOT
../pmd-scala-common/pom.xml
diff --git a/pmd-swift/pom.xml b/pmd-swift/pom.xml
index 68044d16ba..73f00c27bf 100644
--- a/pmd-swift/pom.xml
+++ b/pmd-swift/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-test-schema/pom.xml b/pmd-test-schema/pom.xml
index bed7f20233..4e622b3c43 100644
--- a/pmd-test-schema/pom.xml
+++ b/pmd-test-schema/pom.xml
@@ -11,7 +11,7 @@
pmd
net.sourceforge.pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-test/pom.xml b/pmd-test/pom.xml
index 11bc0c3d77..9d8a9d9ec7 100644
--- a/pmd-test/pom.xml
+++ b/pmd-test/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-tsql/pom.xml b/pmd-tsql/pom.xml
index 6914974413..e76c560cb6 100644
--- a/pmd-tsql/pom.xml
+++ b/pmd-tsql/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-velocity/pom.xml b/pmd-velocity/pom.xml
index 4f6ba4e332..ce1dd8f862 100644
--- a/pmd-velocity/pom.xml
+++ b/pmd-velocity/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-visualforce/pom.xml b/pmd-visualforce/pom.xml
index bd93ce3b36..b2c0986219 100644
--- a/pmd-visualforce/pom.xml
+++ b/pmd-visualforce/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pmd-xml/pom.xml b/pmd-xml/pom.xml
index a89b017a42..1de90d9424 100644
--- a/pmd-xml/pom.xml
+++ b/pmd-xml/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
../pom.xml
diff --git a/pom.xml b/pom.xml
index 5c340318fc..f78eeeb404 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
net.sourceforge.pmd
pmd
- 7.2.0
+ 7.3.0-SNAPSHOT
pom
PMD
@@ -62,7 +62,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/7.2.0
+ HEAD