Skip to content

Commit

Permalink
Bump com.autonomousapps.dependency-analysis from 1.33.0 to 2.0.1 (#690)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gaëtan Muller <[email protected]>
  • Loading branch information
dependabot[bot] and MGaetan89 authored Sep 3, 2024
1 parent a8a9340 commit e559205
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ jobs:
run: mkdir -p ~/.gradle; cp .github/gradle-ci.properties ~/.gradle/gradle.properties
- name: Run Dependency Analysis
run: ./gradlew buildHealth
- name: Display analysis report
if: ${{ !cancelled() }}
run: cat build/reports/dependency-analysis/build-health-report.txt

unit-test:
name: Unit Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ import org.gradle.kotlin.dsl.extra
class PillarboxAndroidApplicationPlugin : Plugin<Project> {
override fun apply(target: Project) = with(target) {
pluginManager.apply("com.android.application")
pluginManager.apply("com.autonomousapps.dependency-analysis")
pluginManager.apply("org.jetbrains.kotlin.android")
pluginManager.apply("org.jetbrains.kotlin.plugin.compose")

extensions.configure<ApplicationExtension> {
configureAndroidLintModule(this)
configureAndroidModule(this)
configureKotlinModule()

buildFeatures {
compose = true
Expand Down Expand Up @@ -66,7 +68,5 @@ class PillarboxAndroidApplicationPlugin : Plugin<Project> {
}
}
}

configureKotlinModule()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import org.gradle.kotlin.dsl.configure
class PillarboxAndroidLibraryPlugin : Plugin<Project> {
override fun apply(target: Project) = with(target) {
pluginManager.apply("com.android.library")
pluginManager.apply("com.autonomousapps.dependency-analysis")
pluginManager.apply("org.jetbrains.kotlin.android")

extensions.configure<LibraryExtension> {
Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@ android.useAndroidX=true
kotlin.code.style=official

org.gradle.caching=true
# Disable configuration cache until Dokka supports it: https://github.com/Kotlin/dokka/issues/2231
# Disable configuration cache until Dokka supports it: https://github.com/Kotlin/dokka/issues/1217
org.gradle.configuration-cache=false

# Print dependency analysis report to the console
dependency.analysis.print.build.health=true
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ androidx-test-runner = "1.6.2"
androidx-tv-material = "1.0.0"
coil = "2.7.0"
comscore = "6.11.1"
dependency-analysis-gradle-plugin = "1.33.0"
dependency-analysis-gradle-plugin = "2.0.1"
detekt = "1.23.6"
dokka = "1.9.20"
guava = "33.0.0-android"
Expand Down
1 change: 0 additions & 1 deletion pillarbox-demo-tv/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ dependencies {
implementation(libs.androidx.compose.ui.unit)
implementation(libs.androidx.compose.ui.util)
implementation(libs.androidx.core)
implementation(libs.androidx.lifecycle.runtime)
implementation(libs.androidx.lifecycle.viewmodel)
implementation(libs.androidx.lifecycle.viewmodel.compose)
implementation(libs.androidx.media3.common)
Expand Down

0 comments on commit e559205

Please sign in to comment.