Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.openbakery.xcode-plugin") version "0.12.2"
}

See also:

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