Search Gradle plugins

Version 0.10.3 (latest)

Created 15 April 2015.

A gradle plugin for building Xcode projects!

Using the plugins DSL:

plugins {
  id("org.openbakery.xcodeplugin") version "0.10.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.openbakery:xcodePlugin:0.10.3")
  }
}

apply(plugin = "org.openbakery.xcodeplugin")

Using the plugins DSL:

plugins {
  id "org.openbakery.xcodeplugin" version "0.10.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.openbakery:xcodePlugin:0.10.3"
  }
}

apply plugin: "org.openbakery.xcodeplugin"

Learn how to apply plugins to subprojects