Skip to content

Commit

Permalink
Remove -jvm suffix where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmans0n committed Oct 29, 2024
1 parent 45fbbcb commit 1b96a03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ internal class ClasspathTest : BaseGradleTest() {
}

taskOutputs[":printCompileClasspath"] shouldBe """
dev.zacsweers.anvil:annotations-jvm
dev.zacsweers.anvil:annotations
$stdlib
""".trimIndent()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ internal open class AnvilPlugin : KotlinCompilerPluginSupportPlugin {
disableCorrectErrorTypes(variant)

kotlinCompilation.dependencies {
compileOnly("$GROUP:annotations-jvm:$VERSION")
compileOnly("$GROUP:annotations:$VERSION")
}
kotlinCompilation.substituteDependencies(
project,
"com.squareup.anvil:annotations",
"$GROUP:annotations-jvm",
"$GROUP:annotations",
)
}
if (variant.variantFilter.addOptionalAnnotations) {
Expand Down

0 comments on commit 1b96a03

Please sign in to comment.