Search Gradle plugins

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

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"

Learn how to apply plugins to subprojects