Search Gradle plugins

com.github.bdeneuter.mindstorms.ev3

A gradle plugin for building, deploying and running Java applications on the Lego Mindstorms EV3 brick with LeJOS installed.

https://github.com/bdeneuter/mindstorms-plugin

Sources: https://github.com/bdeneuter/mindstorms-plugin.git

Version 1.1.1

Created 06 August 2016.

A gradle plugin for building, deploying and running Java applications on the Lego Mindstorms EV3 brick with LeJOS installed.

Using the plugins DSL:

plugins {
  id("com.github.bdeneuter.mindstorms.ev3") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.bdeneuter:mindstorms-plugin:1.1.1")
  }
}

apply(plugin = "com.github.bdeneuter.mindstorms.ev3")

Using the plugins DSL:

plugins {
  id "com.github.bdeneuter.mindstorms.ev3" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.bdeneuter:mindstorms-plugin:1.1.1"
  }
}

apply plugin: "com.github.bdeneuter.mindstorms.ev3"

Learn how to apply plugins to subprojects