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.2.5-SNAPSHOT
Created 12 October 2020.
This plugin will help you to crete an ios framework out of a KMP project
Using the plugins DSL:
plugins {
id("io.github.ciriti.ceres") version "0.2.5-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ciriti:ceres:0.2.5-SNAPSHOT")
}
}
apply(plugin = "io.github.ciriti.ceres")
Using the plugins DSL:
plugins {
id "io.github.ciriti.ceres" version "0.2.5-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ciriti:ceres:0.2.5-SNAPSHOT"
}
}
apply plugin: "io.github.ciriti.ceres"