Search Gradle plugins

thad.gradle.ev3.Ev3Plugin

This plugin provides support for building and deploying C++ EV3 Projects.

https://github.com/ThadHouse/Ev3Plugin

Sources: https://github.com/ThadHouse/Ev3Plugin

Version 0.2.0

Created 15 January 2019.

This plugin provides support for building and deploying C++ EV3 Projects.

Using the plugins DSL:

plugins {
  id("thad.gradle.ev3.Ev3Plugin") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("thad.gradle.ev3:ev3plugin:0.2.0")
  }
}

apply(plugin = "thad.gradle.ev3.Ev3Plugin")

Using the plugins DSL:

plugins {
  id "thad.gradle.ev3.Ev3Plugin" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "thad.gradle.ev3:ev3plugin:0.2.0"
  }
}

apply plugin: "thad.gradle.ev3.Ev3Plugin"

Learn how to apply plugins to subprojects