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

1.9

Created 18 March 2017.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.cisco.gradle:gradle-external-build:1.9")
      }
    }
    
    apply(plugin = "com.cisco.external-build")
  • Applying plugins to all subprojects .