teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

不要なコメントの削除

2016/03/08 11:33

投稿

wordconverter
wordconverter

スコア30

title CHANGED
File without changes
body CHANGED
@@ -8,15 +8,12 @@
8
8
  <!-- =================================
9
9
  target: checkstyle
10
10
  ================================= -->
11
- <!-- CheckStyleインストールディレクトリ -->
12
11
  <target name="CheckStyle">
13
12
  <taskdef resource="checkstyletask.properties" classpath="C:\jarがあるパス\checkstyle-6.14.1-all.jar" />
14
- <!-- CheckStyleの宣言 -->
15
13
  <checkstyle config="C:\workspace\OrginalCheckStyle.xml" failureProperty="checkstyle.failure" failOnViolation="false">
16
14
  <formatter type="xml" tofile="checkstyle_report.xml" />
17
15
  <fileset dir="src" includes="**/*.java" />
18
16
  </checkstyle>
19
- <!-- コードレビュー結果ファイルのHTML変換 -->
20
17
  <style in="checkstyle_report.xml" out="checkstyle_report.html" style="checkstyle-noframes.xsl" />
21
18
  </target>
22
19
  ```