im.getsocial.openbakery.xcode-plugin
Owner: Gabor Vass
A gradle plugin for building Xcode projects!
http://openbakery.org/gradle.html
Sources: https://github.com/openbakery/gradle-xcodePlugin
Version 0.13.0 (latest)
0.13.0
Created 09 February 2017.
A gradle plugin for building Xcode projects!
Using the plugins DSL:
plugins {
id("im.getsocial.openbakery.xcode-plugin") version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0")
}
}
apply(plugin = "im.getsocial.openbakery.xcode-plugin")
Using the plugins DSL:
plugins {
id "im.getsocial.openbakery.xcode-plugin" version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.im.getsocial.openbakery:xcode-plugin:0.13.0"
}
}
apply plugin: "im.getsocial.openbakery.xcode-plugin"