2017-05-04 14 views
0

MVNクリーン私はこれらのエラー取得しています私のプロジェクトにインストールを使用しようとしている:これらのファイルの末尾に段落や\ nを置くファイルは、改行[NewlineAtEndOfFile]で終了していない

[ERROR] C:\Users\lob\Downloads\zanata-platform-platform-4.0.0\zanata-platform-platform-4.0.0\parent\eclipse-code-formatter-js.xml:0: File does not end with a newline. [NewlineAtEndOfFile] 
[ERROR] C:\Users\lob\Downloads\zanata-platform-platform-4.0.0\zanata-platform-platform-4.0.0\parent\eclipse-code-formatter.xml:0: File does not end with a newline. [NewlineAtEndOfFile] 
[ERROR] C:\Users\lob\Downloads\zanata-platform-platform-4.0.0\zanata-platform-platform-4.0.0\parent\pom.xml:0: File does not end with a newline. [NewlineAtEndOfFile] 
[ERROR] C:\Users\lob\Downloads\zanata-platform-platform-4.0.0\zanata-platform-platform-4.0.0\parent\README.txt:0: File does not end with a newline. [NewlineAtEndOfFile] 
Audit done. 
[INFO] There are 4 errors reported by Checkstyle 7.2 with zanata-build-tools/checkstyle.xml ruleset. 
[ERROR] eclipse-code-formatter-js.xml:[0] (misc) NewlineAtEndOfFile: File does not end with a newline. 
[ERROR] eclipse-code-formatter.xml:[0] (misc) NewlineAtEndOfFile: File does not end with a newline. 
[ERROR] pom.xml:[0] (misc) NewlineAtEndOfFile: File does not end with a newline. 
[ERROR] README.txt:[0] (misc) NewlineAtEndOfFile: File does not end with a newline. 

をしません。この問題を解決してください。 Window >> Preferences >> Checkstyle >> Select the configuration file >>の下にあるEclipseでは、これらのファイルは一覧表示されません。使用

  • のWindows 10
  • のJava 8
  • EclipseのNeon.1(4.6.1)
  • をMavenの3.0.4
+0

編集:このルールの詳細に関する情報は、readme.txt

それはLinuxプロジェクトです – lob

答えて

1

原因はのCheckstyleですルールNewlineAtEndOfFileと呼ばれ、プロジェクトのファイルのいずれかに改行がない場合にビルドが成功しないようにしますその終わりに。

ルールは言う:

論拠は:一般的には任意のソースファイルとテキストファイルは、簡単に他のを聞かせて ファイルの末尾に新しいコンテンツを追加し、「差分」コマンドがないために 行区切りで終わる必要があります直前の行を変更して表示しない。

だから、何をしなければならないか、上記のログに記載された各ファイルの末尾に新しい行を追加するだけです:

。 eclipse-code-formatter-js.xml

eclipse-code-formatter.xml

。 pom.xml

checkstyle-NewlineAtEndOfFile-rule

関連する問題