Search Gradle plugins

Version 2023.3

Created 18 February 2023.

Package tests and run tests in jars.

Using the plugins DSL:

plugins {
  id("com.robothy.test-jar") version "2023.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.robothy:gradle-test-jar-plugin:2023.3")
  }
}

apply(plugin = "com.robothy.test-jar")

Using the plugins DSL:

plugins {
  id "com.robothy.test-jar" version "2023.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.robothy:gradle-test-jar-plugin:2023.3"
  }
}

apply plugin: "com.robothy.test-jar"

Learn how to apply plugins to subprojects