Search Gradle plugins

com.mtbvang.devtool

Plugin for working with development environments

Version 0.1.0

Created 12 January 2018.

Plugin for working with development environments

Using the plugins DSL:

plugins {
  id("com.mtbvang.devtool") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.mtbvang:gradle-plugin-devtool:0.1.0")
  }
}

apply(plugin = "com.mtbvang.devtool")

Using the plugins DSL:

plugins {
  id "com.mtbvang.devtool" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.mtbvang:gradle-plugin-devtool:0.1.0"
  }
}

apply plugin: "com.mtbvang.devtool"

Learn how to apply plugins to subprojects