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)
Created 31 October 2021.
Add this plugin to your build using the plugins DSL:
plugins {
id("info.dreamcoder.devtools") version "1.3.8"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("info.dreamcoder.devtools:info.dreamcoder.devtools.gradle.plugin:1.3.8") }
It can then be applied in the precompiled script plugin:plugins { id("info.dreamcoder.devtools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.dreamcoder.devtools:info.dreamcoder.devtools.gradle.plugin:1.3.8") } } apply(plugin = "info.dreamcoder.devtools")
- Applying plugins to all subprojects .