com.cisco.external-build
Owner: Andrew Richardson
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.10
1.10
Created 02 June 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.10"
}
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.10")
}
}
apply(plugin = "com.cisco.external-build")
Using the plugins DSL:
plugins {
id "com.cisco.external-build" version "1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.cisco.gradle:gradle-external-build:1.10"
}
}
apply plugin: "com.cisco.external-build"