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.8 (latest)
1.3.8
Created 31 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.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("info.dreamcoder:devtools:1.3.8")
}
}
apply(plugin = "info.dreamcoder.devtools")
Using the plugins DSL:
plugins {
id "info.dreamcoder.devtools" version "1.3.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "info.dreamcoder:devtools:1.3.8"
}
}
apply plugin: "info.dreamcoder.devtools"