Search Gradle plugins

Version 1.0.4-beta

Created 05 November 2021.

Plugin that gives the ability of running kranberry tests in a easy way

Using the plugins DSL:

plugins {
  id("io.github.kranberry-io.runtests") version "1.0.4-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kranberry-io:runtests:1.0.4-beta")
  }
}

apply(plugin = "io.github.kranberry-io.runtests")

Using the plugins DSL:

plugins {
  id "io.github.kranberry-io.runtests" version "1.0.4-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kranberry-io:runtests:1.0.4-beta"
  }
}

apply plugin: "io.github.kranberry-io.runtests"

Learn how to apply plugins to subprojects