搜索Gradle插件

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

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

了解如何将这些插件应用到子项目中