com.visus.infrastructure.nightlytests
Owner: DevExperte
A plugin to enable (j)Unit tests to be executed only on a dedicated nightly build server
https://github.com/VISUS-Health-IT-GmbH/NightlyTestsPlugin
Sources: https://github.com/VISUS-Health-IT-GmbH/NightlyTestsPlugin.git
Version 1.0.0 (latest)
Created 07 December 2021.
A plugin to enable (j)Unit tests to be executed only on a dedicated nightly build server
Add this plugin to your build using the plugins DSL:
plugins {
id("com.visus.infrastructure.nightlytests") version "1.0.0"
}
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("com.visus.infrastructure.nightlytests:com.visus.infrastructure.nightlytests.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.visus.infrastructure.nightlytests") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.visus.infrastructure.nightlytests:com.visus.infrastructure.nightlytests.gradle.plugin:1.0.0") } } apply(plugin = "com.visus.infrastructure.nightlytests")
- Applying plugins to all subprojects .