• R/O
  • HTTP
  • SSH
  • HTTPS

TogaGem: Commit

TogaGemは、3D動画制作ツール、MikuMikuDance(MMD)で用いられる各種データファイルを読み書きするためのJavaライブラリです。
旧TogaParserライブラリの資産は、TogaGemライブラリに吸収されました。


Commit MetaInfo

Revision7aeb2d390d15e3cfe9b2f86212fe8ba50820cc76 (tree)
Zeit2019-06-27 01:54:32
AutorOlyutorskii <olyutorskii@user...>
CommiterOlyutorskii

Log Message

update checkstyle & spotbugs plugins.

Ändern Zusammenfassung

Diff

--- a/config/checkstyle/checkstyle-suppressions.xml
+++ b/config/checkstyle/checkstyle-suppressions.xml
@@ -6,7 +6,7 @@
66
77 <!--
88 Checkstyle suppressions
9- for Checkstyle 8.20 or later
9+ for Checkstyle 8.22 or later
1010
1111 [ https://checkstyle.org/ ]
1212
@@ -35,6 +35,7 @@
3535
3636 <!-- Miscellaneous -->
3737 <suppress files="" checks="FinalParameters" />
38+ <suppress files="" checks="OrderedProperties" />
3839 <suppress files="" checks="TrailingComment" />
3940
4041 <!-- Modifier -->
--- a/config/checkstyle/checkstyle.xml
+++ b/config/checkstyle/checkstyle.xml
@@ -6,7 +6,7 @@
66
77 <!--
88 Checkstyle modules
9- for Checkstyle 8.21 or later
9+ for Checkstyle 8.22 or later
1010
1111 [ https://checkstyle.org/ ]
1212
@@ -56,6 +56,7 @@
5656 <module name="NewlineAtEndOfFile">
5757 <property name="fileExtensions" value="java, properties, xml, xsd, md, txt" />
5858 </module>
59+ <module name="OrderedProperties" />
5960 <module name="Translation" />
6061 <module name="UniqueProperties" />
6162
@@ -199,6 +200,8 @@
199200 <module name="SuperClone" />
200201 <module name="SuperFinalize" />
201202 <module name="UnnecessaryParentheses" />
203+ <module name="UnnecessarySemicolonInEnumeration" />
204+ <module name="UnnecessarySemicolonInTryWithResources" />
202205 <module name="VariableDeclarationUsageDistance">
203206 <property name="allowedDistance" value="5"/>
204207 </module>
@@ -234,6 +237,7 @@
234237 <property name="scope" value="protected" />
235238 </module>
236239 <module name="MissingJavadocMethod" />
240+ <module name="MissingJavadocPackage" />
237241 <module name="MissingJavadocType" />
238242 <module name="NonEmptyAtclauseDescription" />
239243 <module name="SingleLineJavadoc" />
--- a/pom.xml
+++ b/pom.xml
@@ -99,14 +99,14 @@
9999 <jacoco-plugin.version>0.8.4</jacoco-plugin.version>
100100
101101 <checkstyle-plugin.version>3.1.0</checkstyle-plugin.version>
102- <checkstyleruntime.version>8.21</checkstyleruntime.version>
102+ <checkstyleruntime.version>8.22</checkstyleruntime.version>
103103 <checkstyle.config.location>${project.basedir}/config/checkstyle/checkstyle.xml</checkstyle.config.location>
104104 <checkstyle.suppressions.location>${project.basedir}/config/checkstyle/checkstyle-suppressions.xml</checkstyle.suppressions.location>
105105 <checkstyle.enable.rss>false</checkstyle.enable.rss>
106106
107107 <pmd-plugin.version>3.12.0</pmd-plugin.version>
108108
109- <spotbugs-plugin.version>3.1.11</spotbugs-plugin.version>
109+ <spotbugs-plugin.version>3.1.12</spotbugs-plugin.version>
110110 <spotbugs.effort>Max</spotbugs.effort>
111111 <spotbugs.threshold>Low</spotbugs.threshold>
112112 <!-- for Jenkins -->
Show on old repository browser