Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.openbakery.xcode-plugin")

Using the plugins DSL:

plugins {
  id "org.openbakery.xcode-plugin" version "0.14.2"
}

Using legacy plugin application:

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

apply plugin: "org.openbakery.xcode-plugin"

Learn how to apply plugins to subprojects