io.github.ciriti.ceres
Owner:
Carmelo Iriti
This plugin will help you to crete an ios framework out of a KMP project
https://github.com/ciriti/Ceres.git
Sources: https://github.com/ciriti/Ceres.git
Version 0.3.0-SNAPSHOT (latest)
Created 12 October 2020.
This plugin will help you to crete an ios framework out of a KMP project
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.ciriti.ceres") version "0.3.0-SNAPSHOT"
}
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("io.github.ciriti.ceres:io.github.ciriti.ceres.gradle.plugin:0.3.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.ciriti.ceres") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.ciriti.ceres:io.github.ciriti.ceres.gradle.plugin:0.3.0-SNAPSHOT") } } apply(plugin = "io.github.ciriti.ceres")
- Applying plugins to all subprojects .