foo )
+ {
+ }
+
+}
diff --git a/src/it/MPMD-348-JDK19/verify.groovy b/src/it/MPMD-348-JDK19/verify.groovy
new file mode 100644
index 00000000..ebb6a94c
--- /dev/null
+++ b/src/it/MPMD-348-JDK19/verify.groovy
@@ -0,0 +1,24 @@
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+File buildLog = new File( basedir, 'build.log' )
+assert buildLog.exists()
+assert buildLog.text.contains( '[INFO] PMD Failure: com.mycompany.app.Foo:26 Rule:UnusedFormalParameter Priority:3' )
+assert !buildLog.text.contains( '[WARNING]' )
diff --git a/src/main/java/org/apache/maven/plugins/pmd/PmdReport.java b/src/main/java/org/apache/maven/plugins/pmd/PmdReport.java
index 3966421e..b373bee0 100644
--- a/src/main/java/org/apache/maven/plugins/pmd/PmdReport.java
+++ b/src/main/java/org/apache/maven/plugins/pmd/PmdReport.java
@@ -73,7 +73,7 @@ public class PmdReport
* with the default PMD version are
* currently 1.3
, 1.4
, 1.5
, 1.6
, 1.7
,
* 1.8
, 9
, 10
, 11
, 12
, 13
,
- * 14
, 15
, 16
, 17
, and 18
.
+ * 14
, 15
, 16
, 17
, 18
, and 19
.
*
* You can override the default PMD version by specifying PMD as a dependency,
* see Upgrading PMD at Runtime.
diff --git a/src/site/markdown/releasenotes.md b/src/site/markdown/releasenotes.md
index 3eae6562..0580a9b2 100644
--- a/src/site/markdown/releasenotes.md
+++ b/src/site/markdown/releasenotes.md
@@ -29,6 +29,9 @@ under the License.
**GitHub:**
+### 🚀 New features and improvements
+* [MPMD-348](https://issues.apache.org/jira/browse/MPMD-348) - Support Java 19
+
### 📦 Dependency updates
* [MPMD-345](https://issues.apache.org/jira/browse/MPMD-345) - Upgrade to PMD 6.47.0
* [MPMD-347](https://issues.apache.org/jira/browse/MPMD-347) - Upgrade to PMD 6.48.0