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