File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/kotlin/dev/icerock/moko/gradle Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[versions ]
2- mokoGradlePluginVersion = " 0.5.0 "
2+ mokoGradlePluginVersion = " 0.5.1 "
33
44kotlinVersion = " 1.9.25"
55androidGradlePluginVerison = " 8.3.2"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import org.gradle.api.Plugin
1010import org.gradle.api.Project
1111import org.gradle.api.publish.PublishingExtension
1212import org.gradle.api.publish.maven.MavenPublication
13- import org.gradle.api.publish.maven.tasks.PublishToMavenRepository
13+ import org.gradle.api.publish.maven.tasks.AbstractPublishToMaven
1414import org.gradle.kotlin.dsl.configure
1515import org.gradle.kotlin.dsl.getByType
1616import org.gradle.kotlin.dsl.withType
@@ -83,7 +83,7 @@ class PublicationPlugin : Plugin<Project> {
8383 }
8484
8585 val signingTasks = target.tasks.withType<Sign >()
86- target.tasks.withType<PublishToMavenRepository >().configureEach {
86+ target.tasks.withType<AbstractPublishToMaven >().configureEach {
8787 dependsOn(signingTasks)
8888 }
8989 }
You can’t perform that action at this time.
0 commit comments