Skip to content

Commit eec3ac1

Browse files
authored
Merge pull request #12936 from TobiGr/uddate-extractor
Update NewPipe Extractor, checkstyle and sonarqube to latest versions
2 parents 7d95ec7 + bcb7469 commit eec3ac1

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

app/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ ksp {
134134
// Custom dependency configuration for ktlint
135135
val ktlint by configurations.creating
136136

137+
// https://checkstyle.org/#JRE_and_JDK
138+
tasks.withType<Checkstyle>().configureEach {
139+
javaLauncher = javaToolchains.launcherFor {
140+
languageVersion = JavaLanguageVersion.of(21)
141+
}
142+
}
143+
137144
checkstyle {
138145
configDirectory = rootProject.file("checkstyle")
139146
isIgnoreFailures = false

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ autoservice-google = "1.1.1"
1212
autoservice-zacsweers = "1.2.0"
1313
bridge = "v2.0.2"
1414
cardview = "1.0.0"
15-
checkstyle = "12.2.0"
15+
checkstyle = "13.0.0"
1616
constraintlayout = "2.2.1"
1717
core = "1.17.0"
1818
desugar = "2.1.5"
1919
documentfile = "1.1.0"
2020
exoplayer = "2.19.1"
2121
fragment = "1.8.9"
2222
groupie = "2.10.1"
23-
jsoup = "1.21.2"
23+
jsoup = "1.22.1"
2424
junit = "4.13.2"
2525
junit-ext = "1.3.0"
2626
kotlin = "2.2.21"
27-
ksp = "2.3.2"
27+
ksp = "2.3.4"
2828
ktlint = "1.8.0"
2929
leakcanary = "2.14"
3030
lifecycle = "2.9.4" # Newer versions require minSdk >= 23
@@ -45,7 +45,7 @@ runner = "1.7.0"
4545
rxandroid = "3.0.2"
4646
rxbinding = "4.0.0"
4747
rxjava = "3.1.12"
48-
sonarqube = "7.2.1.6560"
48+
sonarqube = "7.2.2.6593"
4949
statesaver = "1.4.1" # TODO: Drop because it is deprecated and incompatible with KSP2
5050
stetho = "1.6.0"
5151
swiperefreshlayout = "1.2.0"
@@ -61,7 +61,7 @@ teamnewpipe-nanojson = "e9d656ddb49a412a5a0a5d5ef20ca7ef09549996"
6161
# to cause jitpack to regenerate the artifact.
6262
teamnewpipe-newpipe-extractor = "v0.25.0"
6363
viewpager2 = "1.1.0"
64-
webkit = "1.14.0"
64+
webkit = "1.14.0" # Newer versions require minSdk >= 23
6565
work = "2.10.5" # Newer versions require minSdk >= 23
6666

6767
[libraries]

gradle/wrapper/gradle-wrapper.jar

542 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
3+
distributionSha256Sum=0d585f69da091fc5b2beced877feab55a3064d43b8a1d46aeb07996b0915e0e0
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)