Update Gradle, make multiple release tasks for each platform instead of passing a property #37

Merged
CommanderTvis merged 3 commits from commandertvis/ios into dev 2022-03-08 10:14:48 +03:00
Showing only changes of commit 137299b615 - Show all commits

View File

@ -53,8 +53,6 @@ public class KSciencePublishingExtension(public val project: Project) {
}
}
private val releaseTasks = mutableSetOf<Task>()
private fun linkPublicationsToReleaseTask(name: String) = project.afterEvaluate {
allTasks()
.filter { it.name.startsWith("publish") && it.name.endsWith("To${name.capitalize()}Repository") }
@ -67,7 +65,6 @@ public class KSciencePublishingExtension(public val project: Project) {
description = "Publish development or production release based on version suffix"
}
releaseTasks += releaseTask
releaseTask.dependsOn(it)
}
}