Skip to content

Commit

Permalink
[yegor256#1198] update pmd to 6.55
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Mar 11, 2024
1 parent c72d434 commit 39d8048
Show file tree
Hide file tree
Showing 32 changed files with 236 additions and 181 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Expand Up @@ -99,7 +99,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -115,7 +115,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version>0.22.0</version>
<version>0.24.1</version>
</dependency>
<dependency>
<groupId>com.jcabi</groupId>
Expand Down Expand Up @@ -149,6 +149,17 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>guava</artifactId>
<version>32.0.0-jre</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.6</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand Down Expand Up @@ -194,7 +205,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.20.Final</version>
<version>8.0.1.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -224,7 +235,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.20.0</version>
<version>0.22.0</version>
</plugin>
</plugins>
</build>
Expand Down
Expand Up @@ -57,7 +57,7 @@
* Integration test case for all checkstyle checks.
* @since 0.3
*/
public final class ChecksTest {
final class ChecksTest {

/**
* Test checkstyle for true negative.
Expand All @@ -66,7 +66,7 @@ public final class ChecksTest {
*/
@ParameterizedTest
@MethodSource("checks")
public void testCheckstyleTruePositive(final String dir) throws Exception {
void testCheckstyleTruePositive(final String dir) throws Exception {
final AuditListener listener = Mockito.mock(AuditListener.class);
final Collector collector = new ChecksTest.Collector();
Mockito.doAnswer(collector).when(listener)
Expand Down Expand Up @@ -118,7 +118,7 @@ public void testCheckstyleTruePositive(final String dir) throws Exception {
*/
@ParameterizedTest
@MethodSource("checks")
public void testCheckstyleTrueNegative(final String dir) throws Exception {
void testCheckstyleTrueNegative(final String dir) throws Exception {
final AuditListener listener = Mockito.mock(AuditListener.class);
final Collector collector = new ChecksTest.Collector();
Mockito.doAnswer(collector).when(listener)
Expand Down

0 comments on commit 39d8048

Please sign in to comment.