TogaGemは、3D動画制作ツール、MikuMikuDance(MMD)で用いられる各種データファイルを読み書きするためのJavaライブラリです。
旧TogaParserライブラリの資産は、TogaGemライブラリに吸収されました。
Revision | 7aeb2d390d15e3cfe9b2f86212fe8ba50820cc76 (tree) |
---|---|
Zeit | 2019-06-27 01:54:32 |
Autor | ![]() |
Commiter | Olyutorskii |
update checkstyle & spotbugs plugins.
@@ -6,7 +6,7 @@ | ||
6 | 6 | |
7 | 7 | <!-- |
8 | 8 | Checkstyle suppressions |
9 | - for Checkstyle 8.20 or later | |
9 | + for Checkstyle 8.22 or later | |
10 | 10 | |
11 | 11 | [ https://checkstyle.org/ ] |
12 | 12 |
@@ -35,6 +35,7 @@ | ||
35 | 35 | |
36 | 36 | <!-- Miscellaneous --> |
37 | 37 | <suppress files="" checks="FinalParameters" /> |
38 | + <suppress files="" checks="OrderedProperties" /> | |
38 | 39 | <suppress files="" checks="TrailingComment" /> |
39 | 40 | |
40 | 41 | <!-- Modifier --> |
@@ -6,7 +6,7 @@ | ||
6 | 6 | |
7 | 7 | <!-- |
8 | 8 | Checkstyle modules |
9 | - for Checkstyle 8.21 or later | |
9 | + for Checkstyle 8.22 or later | |
10 | 10 | |
11 | 11 | [ https://checkstyle.org/ ] |
12 | 12 |
@@ -56,6 +56,7 @@ | ||
56 | 56 | <module name="NewlineAtEndOfFile"> |
57 | 57 | <property name="fileExtensions" value="java, properties, xml, xsd, md, txt" /> |
58 | 58 | </module> |
59 | + <module name="OrderedProperties" /> | |
59 | 60 | <module name="Translation" /> |
60 | 61 | <module name="UniqueProperties" /> |
61 | 62 |
@@ -199,6 +200,8 @@ | ||
199 | 200 | <module name="SuperClone" /> |
200 | 201 | <module name="SuperFinalize" /> |
201 | 202 | <module name="UnnecessaryParentheses" /> |
203 | + <module name="UnnecessarySemicolonInEnumeration" /> | |
204 | + <module name="UnnecessarySemicolonInTryWithResources" /> | |
202 | 205 | <module name="VariableDeclarationUsageDistance"> |
203 | 206 | <property name="allowedDistance" value="5"/> |
204 | 207 | </module> |
@@ -234,6 +237,7 @@ | ||
234 | 237 | <property name="scope" value="protected" /> |
235 | 238 | </module> |
236 | 239 | <module name="MissingJavadocMethod" /> |
240 | + <module name="MissingJavadocPackage" /> | |
237 | 241 | <module name="MissingJavadocType" /> |
238 | 242 | <module name="NonEmptyAtclauseDescription" /> |
239 | 243 | <module name="SingleLineJavadoc" /> |
@@ -99,14 +99,14 @@ | ||
99 | 99 | <jacoco-plugin.version>0.8.4</jacoco-plugin.version> |
100 | 100 | |
101 | 101 | <checkstyle-plugin.version>3.1.0</checkstyle-plugin.version> |
102 | - <checkstyleruntime.version>8.21</checkstyleruntime.version> | |
102 | + <checkstyleruntime.version>8.22</checkstyleruntime.version> | |
103 | 103 | <checkstyle.config.location>${project.basedir}/config/checkstyle/checkstyle.xml</checkstyle.config.location> |
104 | 104 | <checkstyle.suppressions.location>${project.basedir}/config/checkstyle/checkstyle-suppressions.xml</checkstyle.suppressions.location> |
105 | 105 | <checkstyle.enable.rss>false</checkstyle.enable.rss> |
106 | 106 | |
107 | 107 | <pmd-plugin.version>3.12.0</pmd-plugin.version> |
108 | 108 | |
109 | - <spotbugs-plugin.version>3.1.11</spotbugs-plugin.version> | |
109 | + <spotbugs-plugin.version>3.1.12</spotbugs-plugin.version> | |
110 | 110 | <spotbugs.effort>Max</spotbugs.effort> |
111 | 111 | <spotbugs.threshold>Low</spotbugs.threshold> |
112 | 112 | <!-- for Jenkins --> |