im.getsocial.openbakery.xcode-plugin
所有者: Gabor Vass
用于构建Xcode项目的gradle插件!
http://openbakery.org/gradle.html
源码: https://github.com/openbakery/gradle-xcodePlugin
版本 0.13.0 (最新版)
0.13.0
创建于2017年2月9日。
用于构建Xcode项目的gradle插件!
使用插件DSL
plugins {
id("im.getsocial.openbakery.xcode-plugin") version "0.13.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0")
}
}
apply(plugin = "im.getsocial.openbakery.xcode-plugin")
使用插件DSL
plugins {
id "im.getsocial.openbakery.xcode-plugin" version "0.13.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0"
}
}
apply plugin: "im.getsocial.openbakery.xcode-plugin"