OSDN Git Service

3.207.2 リリース準備 release-3.207.2
authorOlyutorskii <olyutorskii@users.osdn.me>
Mon, 12 Mar 2012 15:21:33 +0000 (00:21 +0900)
committerOlyutorskii <olyutorskii@users.osdn.me>
Mon, 12 Mar 2012 15:21:33 +0000 (00:21 +0900)
CHANGELOG.txt
SCM.txt
pom.xml
src/main/config/checks.xml
src/main/config/pmdrules.xml

index 76e564a..744c33f 100644 (file)
@@ -4,16 +4,16 @@
 Jindolf 変更履歴
 
 
-3.206.5-SNAPSHOT (201X-XX-XX)
-    ・Maven3対応。
+3.207.2 (2012-03-13)
+    ・起動クラスの変更。(jp.sfjp.jindolf.Jindolf)
+    ・パッケージ構成の整理。
     ・JSON入出力処理を Jovsonz プロジェクトへ分離。
+    ・Maven3対応。
     ・ninjin氏の連絡先を http://ninjinix.com へ変更。
     ・UIの各種文言を修正。
     ・L&Fを「MacOSX」から変更する際の例外に対処。(バグ報告#26564,#15046)
     ・テキスト系ポップアップメニューにL&F変更が反映されないバグに対処。
      (バグ報告#27668)
-    ・パッケージ構成の整理。
-    ・スタートアップクラスの変更。
 
 3.206.4 (2011-05-10)
     ・10億をこえる発言番号へのアンカー参照を抑止。(バグ報告#24477,#24946)
diff --git a/SCM.txt b/SCM.txt
index 08b1699..aa1d381 100644 (file)
--- a/SCM.txt
+++ b/SCM.txt
@@ -21,7 +21,7 @@
 ./.hgignore
 
 Mercurial 管理の対象外にさせたいファイル群の設定です。
-IDE独自の設定ファイルは基本的に管理対象外とするつもりです。
+IDE独自の設定ファイルは基本的に管理対象外とする方針です。
 
 
 ./.hgeol
@@ -36,7 +36,7 @@ Mercurial の EOL Extension 用の設定です。
 EOL Extensionを有効にしないと設定が反映されません。
 
 
-=== リンク ===
+=== Mercurial に関するリンク ===
 
 ・http://mercurial.selenic.com/
 ・http://mercurial.selenic.com/wiki/.hgignore
diff --git a/pom.xml b/pom.xml
index 0c8b190..280704e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -16,7 +16,7 @@
     <groupId>jp.sourceforge.jindolf</groupId>
     <artifactId>jindolf</artifactId>
 
-    <version>3.206.5-SNAPSHOT</version>
+    <version>3.207.2</version>
 
     <packaging>jar</packaging>
     <name>Jindolf</name>
         <dependency>
             <groupId>jp.sourceforge.jindolf</groupId>
             <artifactId>jinparser</artifactId>
-            <version>1.407.5-SNAPSHOT</version>
+            <version>1.407.4</version>
             <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>jp.sourceforge.jovsonz</groupId>
             <artifactId>jovsonz</artifactId>
-            <version>1.101.3-SNAPSHOT</version>
+            <version>1.101.2</version>
             <scope>compile</scope>
         </dependency>
 
index c21c580..cf55cf6 100644 (file)
@@ -7,7 +7,7 @@
 <!--
     Checkstyle用チェック項目定義。
 
-    Checkstyle 5.3 以降向けに記述。
+    Checkstyle 5.5 以降向けに記述。
 
     [ http://checkstyle.sourceforge.net/ ]
 
         <module name="FallThrough" />
         <module name="MultipleStringLiterals" />
         <module name="MultipleVariableDeclarations" />
+        <module name="RequireThis">
+            <property name="checkMethods" value="false" />
+        </module>
         <module name="UnnecessaryParentheses" />
         <module name="OneStatementPerLine" />
 
         <module name="RegexpSinglelineJava" />
 -->
 
-<!-- バグ?
-        <module name="RequireThis" />
--->
-
 <!-- Obsolated
         <module name="TabCharacter" />
 -->
index 65d196b..a77bfcc 100644 (file)
@@ -3,7 +3,7 @@
 <!--
     PMD用ルールセット定義
 
-    PMD [ http://pmd.sourceforge.net/ ] 4.2.5 以降用に記述されています。
+    PMD [ http://pmd.sourceforge.net/ ] 4.3 以降用に記述されています。
 
     Copyright(c) 2010 olyutorskii
 -->
@@ -47,6 +47,7 @@
         <exclude name="DefaultPackage" />
         <exclude name="DataflowAnomalyAnalysis" />
         <exclude name="AvoidUsingShortType" />
+        <exclude name="AvoidLiteralsInIfCondition" />
     </rule>
 
     <rule ref="rulesets/coupling.xml" />