org.openbakery.xcodeplugin
Owner: René Pirringer
A gradle plugin for building Xcode projects!
http://openbakery.org/gradle.php
Sources: https://github.com/openbakery/gradle-xcodePlugin
Version 0.10.3 (latest)
0.10.3
Created 15 April 2015.
A gradle plugin for building Xcode projects!
Using the plugins DSL:
plugins {
id("org.openbakery.xcodeplugin") version "0.10.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.openbakery:xcodePlugin:0.10.3")
}
}
apply(plugin = "org.openbakery.xcodeplugin")
Using the plugins DSL:
plugins {
id "org.openbakery.xcodeplugin" version "0.10.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.openbakery:xcodePlugin:0.10.3"
}
}
apply plugin: "org.openbakery.xcodeplugin"