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.2.3 (latest)

Created 10 May 2018.

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.2.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects