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.12

Created 16 July 2018.

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.12"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.cisco.gradle:buildSrc:1.12"
  }
}

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

Learn how to apply plugins to subprojects