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)
1.0.0
Created 07 December 2021.
A plugin to enable (j)Unit tests to be executed only on a dedicated nightly build server
Using the plugins DSL:
plugins {
id("com.visus.infrastructure.nightlytests") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.visus.infrastructure:NightlyTestsPlugin:1.0.0")
}
}
apply(plugin = "com.visus.infrastructure.nightlytests")
Using the plugins DSL:
plugins {
id "com.visus.infrastructure.nightlytests" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.visus.infrastructure:NightlyTestsPlugin:1.0.0"
}
}
apply plugin: "com.visus.infrastructure.nightlytests"