Search Gradle plugins

Version 0.10.3 (latest)

0.10.3

Created 15 April 2015.

A gradle plugin for building Xcode projects!

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.openbakery:xcodePlugin:0.10.3")
      }
    }
    
    apply(plugin = "org.openbakery.xcodeplugin")
  • Applying plugins to all subprojects .