Only include ``jsr305`` and not complete spotbugs

Only ``javax.annotation.Nonull`` or ``javax.annotation.Nullable`` are currently in used which means that spotbugs can and should be removed.

See https://github.com/TeamNewPipe/NewPipeExtractor/issues/1278 for details
pull/1279/head
litetex 2025-02-15 14:23:33 +01:00
rodzic 9f83b385a4
commit 677c048f1b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 525B43E6039B3689
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ allprojects {
ext {
nanojsonVersion = "1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751"
spotbugsVersion = "4.8.6"
jsr305Version = "3.0.2"
junitVersion = "5.11.4"
checkstyleVersion = "10.4"
}

Wyświetl plik

@ -27,7 +27,7 @@ dependencies {
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
implementation 'org.jsoup:jsoup:1.17.2'
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
implementation "com.google.code.findbugs:jsr305:$jsr305Version"
// do not upgrade to 1.7.14, since in 1.7.14 Rhino uses the `SourceVersion` class, which is not
// available on Android (even when using desugaring), and `NoClassDefFoundError` is thrown

Wyświetl plik

@ -1,4 +1,4 @@
dependencies {
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
implementation "com.google.code.findbugs:jsr305:$jsr305Version"
}