Search Gradle plugins

Version 0.13.0 (latest)

Created 09 February 2017.

A gradle plugin for building Xcode projects!

Using the plugins DSL:

plugins {
  id("im.getsocial.openbakery.xcode-plugin") version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0")
  }
}

apply(plugin = "im.getsocial.openbakery.xcode-plugin")

Using the plugins DSL:

plugins {
  id "im.getsocial.openbakery.xcode-plugin" version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0"
  }
}

apply plugin: "im.getsocial.openbakery.xcode-plugin"

Learn how to apply plugins to subprojects