tanamonの稀に良く書く日記

KEEP CALM AND DRINK BEER

2008-09-01から1ヶ月間の記事一覧

findbugs-maven-plugin

FindBugsを実行するfindbugs-maven-pluginの設定 /project/reporting/plugins <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <xmlOutput>true</xmlOutput> <xmlOutputDirectory>${project.build.directory}</xmlOutputDirectory> <effort>Max<…</effort></configuration></plugin>

Maven2設定のまとめ

しばらく時間が経ったせいか、どこまで調べたのかわからなくなってしまったので、まとめてみる。 調べたプラグイン maven-checkstyle-plugin maven-compiler-plugin maven-eclipse-plugin maven-surefire-plugin + djUnit maven-surefire-report-plugin mave…