Search Gradle plugins

io.github.ciriti.ceres

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

Using the plugins DSL:

plugins {
  id("io.github.ciriti.ceres") version "0.3.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ciriti:ceres:0.3.0-SNAPSHOT")
  }
}

apply(plugin = "io.github.ciriti.ceres")

Using the plugins DSL:

plugins {
  id "io.github.ciriti.ceres" version "0.3.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ciriti:ceres:0.3.0-SNAPSHOT"
  }
}

apply plugin: "io.github.ciriti.ceres"

Learn how to apply plugins to subprojects