Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

x2on/gradle-cocoapods-plugin

Repository files navigation

gradle-cocoapods-plugin Build Status

A Gradle plugin for Cocoapods.

Basic usage

Add to your build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'de.felixschulze.gradle:gradle-cocoapods-plugin:1.1'
    }
}

apply plugin: 'de.felixschulze.gradle.cocoapods'

Advanced usage

Add to your build.gradle

cocoapods {
    teamCityLog = true
    ignorePackages = ["AFNetworking"]
    failOnFailure = false
}
  • teamCityLog: Add features for TeamCity
  • ignorePackages: Packages which should be ignored if new versions available

Changelog

Releases

License

gradle-cocoapods-plugin is available under the MIT license. See the LICENSE file for more info.