Skip to content

Commit

Permalink
Update check-publication
Browse files Browse the repository at this point in the history
  • Loading branch information
Nillerr committed Mar 29, 2023
1 parent 2fbcaba commit de2a571
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tools/check-publication/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kotlin {
}

android {
compileSdk = 31
compileSdk = 33
}

inline fun <reified T> getProperty(key: String): T {
Expand Down Expand Up @@ -45,5 +45,10 @@ kotlin {
}

dependencies {
ksp("io.mockative:mockative-processor:$version")
configurations
.filter { it.name.startsWith("ksp") && it.name.contains("Test") }
.forEach {
println("$it")
add(it.name, "io.mockative:mockative-processor:$version")
}
}

0 comments on commit de2a571

Please sign in to comment.