在SonarQube 6.4與findbug插件安裝3.5,我看到在每一個構建工作這個問題: INFO: Findbugs output report: /var/lib/jenkins/workspace/.........../findbugs-result.xml
The following errors occurred during analysis:
Exception a
我們使用find-sec-bugs與FindBugs的找到我們的代碼中潛在的問題。他們發現仲漏洞的SQL注入。我們使用Spring JDBCTemplate來訪問我們的數據庫,並且find-sec-bugs似乎認爲我們在所有地方都有SQL注入漏洞。最簡單的例子如下: public class MyDataRepo {
private final String getDataSql;
我有一個對同級模塊具有編譯時間依賴性的gradle模塊。 dependencies {
compile project(':sibling-module')
}
雖然運行的版本,FindBugs的似乎無法找到的依賴,所以我收到以下消息: The following classes needed for analysis were missing:
com.example.