io.github.kranberry-io.runtests
Owner:
Angelica Oliveira
Plugin that gives the ability of running kranberry tests in a easy way
https://github.com/kranberry-io
Sources: https://github.com/kranberry-io/kranberry
Version 1.0.5-beta (latest)
Created 23 November 2021.
Plugin that gives the ability of running kranberry tests in a easy way
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.kranberry-io.runtests") version "1.0.5-beta"
}
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("io.github.kranberry-io.runtests:io.github.kranberry-io.runtests.gradle.plugin:1.0.5-beta") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.kranberry-io.runtests") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.kranberry-io.runtests:io.github.kranberry-io.runtests.gradle.plugin:1.0.5-beta") } } apply(plugin = "io.github.kranberry-io.runtests")
- Applying plugins to all subprojects .