Search Gradle plugins

info.dreamcoder.devtools

Owner: jimxl

Development tools for Gradle projects currently include monitoring and automatic execution of test files. When the code file or test file changes, the plug-in automatically detects the corresponding test file and executes it. If you type Enter, all tests will be executed.

https://github.com/KotlinDream/devtools

Sources: https://github.com/KotlinDream/devtools

Version 1.3.6

Created 10 October 2021.

Development tools for Gradle projects currently include monitoring and automatic execution of test files. When the code file or test file changes, the plug-in automatically detects the corresponding test file and executes it. If you type Enter, all tests will be executed.

Using the plugins DSL:

plugins {
  id("info.dreamcoder.devtools") version "1.3.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("info.dreamcoder:devtools:1.3.6")
  }
}

apply(plugin = "info.dreamcoder.devtools")

Using the plugins DSL:

plugins {
  id "info.dreamcoder.devtools" version "1.3.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "info.dreamcoder:devtools:1.3.6"
  }
}

apply plugin: "info.dreamcoder.devtools"

Learn how to apply plugins to subprojects