我正在努力解决以下问题:我想设置我的蚂蚁来编译Java源代码。一切正常,但我也想使用spotbugs / findpugs分析工具。
因此在手册中写道:
DirectorySlash Off
#removing trailing slash
RewriteCond %{THE_REQUEST_FILENAME} /(.*)/( |$|?)
RewriteRule ^(.*)/$ $1 [R=301,L]
# internally add the slash back
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_URI} !/$
RewriteRule ^(.*)$ /$1/ [L]
老实说,我不知道他们想从我这里得到什么。什么是类名?我在这里坐了几个小时,没有找到解决办法。当然,Spotbugs说找不到该类。究竟是什么期望?
答案 0 :(得分:0)
您检查了the official spotbugs document吗?
在您的情况下,您需要添加classpath
属性,以使ant找到spotbugs-ant.jar
。您还需要添加<spotbugs>
元素以运行Spotbug分析。