Search Gradle plugins

com.cisco.external-build

A Gradle plugin for seamlessly integrating with other build tools, including GNU make, CMake, qmake, and more.

https://github.com/awrichar/gradle-external-build

Sources: https://github.com/awrichar/gradle-external-build

Version 1.9

Created 18 March 2017.

A Gradle plugin for seamlessly integrating with other build tools, including GNU make, CMake, qmake, and more.

Using the plugins DSL:

plugins {
  id("com.cisco.external-build") version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.cisco.gradle:gradle-external-build:1.9")
  }
}

apply(plugin = "com.cisco.external-build")

Using the plugins DSL:

plugins {
  id "com.cisco.external-build" version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.cisco.gradle:gradle-external-build:1.9"
  }
}

apply plugin: "com.cisco.external-build"

Learn how to apply plugins to subprojects