Skip to content

Commit 744a547

Browse files
committed
update deps
1 parent e107718 commit 744a547

4 files changed

Lines changed: 6 additions & 9 deletions

File tree

pmd.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
</rule>
1818
<rule ref="category/java/bestpractices.xml/SwitchStmtsShouldHaveDefault" />
1919
<rule ref="category/java/bestpractices.xml/SystemPrintln" />
20-
<rule ref="category/java/bestpractices.xml/UnusedImports" />
2120
<rule ref="category/java/bestpractices.xml/UnusedLocalVariable" />
2221
<rule ref="category/java/bestpractices.xml/UseAssertNullInsteadOfAssertTrue" />
2322
<rule ref="category/java/bestpractices.xml/UseAssertSameInsteadOfAssertTrue" />
@@ -34,8 +33,6 @@
3433
</properties>
3534
</rule>
3635
<rule ref="category/java/codestyle.xml/ControlStatementBraces" />
37-
<rule ref="category/java/codestyle.xml/DontImportJavaLang" />
38-
<rule ref="category/java/codestyle.xml/DuplicateImports" />
3936
<rule ref="category/java/codestyle.xml/ExtendsObject" />
4037
<rule ref="category/java/codestyle.xml/FieldNamingConventions" />
4138
<rule ref="category/java/codestyle.xml/ForLoopShouldBeWhileLoop" />
@@ -48,6 +45,7 @@
4845
<rule ref="category/java/codestyle.xml/UnnecessaryAnnotationValueElement" />
4946
<rule ref="category/java/codestyle.xml/UnnecessaryConstructor" />
5047
<rule ref="category/java/codestyle.xml/UnnecessaryFullyQualifiedName" />
48+
<rule ref="category/java/codestyle.xml/UnnecessaryImport" />
5149
<rule ref="category/java/codestyle.xml/UnnecessaryModifier" />
5250
<rule ref="category/java/codestyle.xml/UnnecessaryReturn" />
5351
<rule ref="category/java/codestyle.xml/UselessParentheses" />
@@ -91,7 +89,6 @@
9189
<rule ref="category/java/errorprone.xml/FinalizeOnlyCallsSuperFinalize" />
9290
<rule ref="category/java/errorprone.xml/FinalizeShouldBeProtected" />
9391
<rule ref="category/java/errorprone.xml/IdempotentOperations" />
94-
<rule ref="category/java/errorprone.xml/ImportFromSamePackage" />
9592
<rule ref="category/java/errorprone.xml/InstantiationToGetClass" />
9693
<rule ref="category/java/errorprone.xml/InvalidLogMessageFormat" />
9794
<rule ref="category/java/errorprone.xml/MissingStaticMethodInNonInstantiatableClass" />

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<dependency>
106106
<groupId>com.puppycrawl.tools</groupId>
107107
<artifactId>checkstyle</artifactId>
108-
<version>8.41.1</version>
108+
<version>8.42</version>
109109
</dependency>
110110
</dependencies>
111111
</plugin>
@@ -271,7 +271,7 @@
271271

272272
<properties>
273273
<java.release>7</java.release>
274-
<pmdVersion>6.33.0</pmdVersion>
274+
<pmdVersion>6.34.0</pmdVersion>
275275
</properties>
276276

277277
<profiles>
@@ -288,7 +288,7 @@
288288
<plugin>
289289
<groupId>org.apache.maven.plugins</groupId>
290290
<artifactId>maven-gpg-plugin</artifactId>
291-
<version>1.6</version>
291+
<version>3.0.1</version>
292292
<executions>
293293
<execution>
294294
<id>sign-artifacts</id>

scribejava-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>jakarta.xml.bind</groupId>
3131
<artifactId>jakarta.xml.bind-api</artifactId>
32-
<version>3.0.0</version>
32+
<version>3.0.1</version>
3333
<optional>true</optional>
3434
</dependency>
3535
<dependency>

scribejava-httpclient-armeria/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.linecorp.armeria</groupId>
2525
<artifactId>armeria</artifactId>
26-
<version>1.6.0</version>
26+
<version>1.7.2</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.github.scribejava</groupId>

0 commit comments

Comments
 (0)