Skip to content

Commit

Permalink
Update Dependency Analysis Plugin to 1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Jan 19, 2024
1 parent ebad35e commit d2cb4ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 21 deletions.
21 changes: 1 addition & 20 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ allprojects {
}

tasks.withType<Detekt>().configureEach {
jvmTarget = "17"
jvmTarget = AppConfig.javaVersion.majorVersion
basePath = rootDir.absolutePath
reports {
xml.required = false
Expand Down Expand Up @@ -91,25 +91,6 @@ dependencyAnalysis {
}
}

project(":pillarbox-demo") {
onUnusedDependencies {
// These dependencies are actually used, but only through inline code: https://github.com/autonomousapps/dependency-analysis-gradle-plugin/issues/795
exclude(libs.androidx.compose.animation.asProvider())
exclude(libs.androidx.compose.animation.core)
exclude(libs.androidx.compose.foundation.asProvider())
exclude(libs.androidx.compose.foundation.layout)
exclude(libs.androidx.compose.material.icons.core)
exclude(libs.androidx.compose.material.icons.extended)
exclude(libs.androidx.compose.runtime.asProvider())
exclude(libs.androidx.compose.ui.asProvider())
exclude(libs.androidx.compose.ui.geometry)
exclude(libs.androidx.compose.ui.graphics)
exclude(libs.androidx.compose.ui.text)
exclude(libs.androidx.compose.ui.tooling.preview)
exclude(libs.androidx.compose.ui.unit)
}
}

project(":pillarbox-player") {
onUnusedDependencies {
// These dependencies are not used directly, but automatically used by libs.androidx.media3.exoplayer
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ androidx-test-runner = "1.5.2"
androidx-tv = "1.0.0-alpha10"
coil = "2.5.0"
comscore = "6.10.0"
dependency-analysis-gradle-plugin = "1.28.0"
dependency-analysis-gradle-plugin = "1.29.0"
detekt = "1.23.4"
guava = "31.1-android"
junit = "4.13.2"
Expand Down

0 comments on commit d2cb4ff

Please sign in to comment.