mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-18 06:32:08 +03:00
Merge pull request #3493 from nextcloud/dependabot/gradle/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.0.1
Build(deps): Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.2.5 to 6.0.1
This commit is contained in:
commit
aaf8c6b310
2 changed files with 5 additions and 3 deletions
|
@ -24,6 +24,8 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
import com.github.spotbugs.snom.SpotBugsTask
|
import com.github.spotbugs.snom.SpotBugsTask
|
||||||
|
import com.github.spotbugs.snom.Confidence
|
||||||
|
import com.github.spotbugs.snom.Effort
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
|
@ -322,8 +324,8 @@ task installGitHooks(type: Copy, group: "development") {
|
||||||
|
|
||||||
spotbugs {
|
spotbugs {
|
||||||
ignoreFailures = true // should continue checking
|
ignoreFailures = true // should continue checking
|
||||||
effort = "max"
|
effort = Effort.MAX
|
||||||
reportLevel = "medium"
|
reportLevel = Confidence.valueOf('MEDIUM')
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(SpotBugsTask) { task ->
|
tasks.withType(SpotBugsTask) { task ->
|
||||||
|
|
|
@ -37,7 +37,7 @@ buildscript {
|
||||||
classpath 'com.android.tools.build:gradle:8.2.0'
|
classpath 'com.android.tools.build:gradle:8.2.0'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
|
||||||
classpath "org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}"
|
classpath "org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}"
|
||||||
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.2.5'
|
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.1'
|
||||||
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.4"
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.4"
|
||||||
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.6.1"
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.6.1"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue