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.14 (latest)
1.14
Created 24 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.14"
}
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.14")
}
}
apply(plugin = "com.cisco.external-build")
Using the plugins DSL:
plugins {
id "com.cisco.external-build" version "1.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.cisco.gradle:gradle-external-build:1.14"
}
}
apply plugin: "com.cisco.external-build"