Search Gradle plugins

com.github.adrianbk.tcitrigger

A Gradle plugin to trigger parametrized Travis CI builds belonging to another GitHub repo.

https://github.com/adrianbk/gradle-travisci-trigger-plugin

Version 1.0.0 (latest)

Created 24 November 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.adrianbk.tcitrigger") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.adrianbk:gradle-travisci-trigger-plugin:1.0.0")
  }
}

apply(plugin = "com.github.adrianbk.tcitrigger")

Using the plugins DSL:

plugins {
  id "com.github.adrianbk.tcitrigger" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.adrianbk:gradle-travisci-trigger-plugin:1.0.0"
  }
}

apply plugin: "com.github.adrianbk.tcitrigger"

Learn how to apply plugins to subprojects