store.kmpd.plugin
Owner: Timofey Solonin
Plugin for deploying SPM packages and CocoaPods specs from Kotlin Multiplatform projects
https://github.com/abdulowork/KMPAppleBinariesDeployment
Sources: https://github.com/abdulowork/KMPAppleBinariesDeployment
Version 0.0.4 (latest)
Created 31 May 2024.
Plugin for deploying SPM packages and CocoaPods specs from Kotlin Multiplatform projects
Add this plugin to your build using the plugins DSL:
plugins {
id("store.kmpd.plugin") version "0.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("store.kmpd.plugin:store.kmpd.plugin.gradle.plugin:0.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("store.kmpd.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("store.kmpd.plugin:store.kmpd.plugin.gradle.plugin:0.0.4") } } apply(plugin = "store.kmpd.plugin")
- Applying plugins to all subprojects .