Skip to content
2 changes: 1 addition & 1 deletion .config/pmd/java/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@

<rule name="AvoidStringBuilderOrBuffer"
language="java"
message="StringBuilder/ should not be used"
message="StringBuilder/StringBuffer should not be used"
class="net.sourceforge.pmd.lang.rule.xpath.XPathRule">
<description>
Usually all cases where `StringBuilder` (or the outdated `StringBuffer`) is used are either due to confusing (legacy) logic or may be replaced by a simpler string concatenation.
Expand Down
4 changes: 2 additions & 2 deletions vaadin-grid-filter-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<mainClass>software.xdev.vaadin.Application</mainClass>

<!-- Dependency-Versions -->
<vaadin.version>24.8.8</vaadin.version>
<vaadin.version>24.9.2</vaadin.version>

<org.springframework.boot.version>3.5.6</org.springframework.boot.version>
</properties>
Expand Down Expand Up @@ -140,7 +140,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.5.1</version>
<version>3.6.1</version>
<executions>
<execution>
<id>patch-package-json-overrides</id>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-grid-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- Dependency-Versions -->
<vaadin.version>24.8.8</vaadin.version>
<vaadin.version>24.9.2</vaadin.version>
</properties>

<dependencyManagement>
Expand Down