Search Gradle plugins

com.ejiahe.gzb.test-plugin

A plugin that helps you test your plugin against a variety of Gradle versions

https://gitlab.com/ysb33rOrg/gradleTest

Sources: https://gitlab.com/ysb33rOrg/gradleTest.git

Version 1.0.0 (latest)

Created 19 March 2020.

A plugin that helps you test your plugin against a variety of Gradle versions

Using the plugins DSL:

plugins {
  id("com.ejiahe.gzb.test-plugin") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.ejiahe.gzb:gradle-plugin-boot:1.0.0")
  }
}

apply(plugin = "com.ejiahe.gzb.test-plugin")

Using the plugins DSL:

plugins {
  id "com.ejiahe.gzb.test-plugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.ejiahe.gzb:gradle-plugin-boot:1.0.0"
  }
}

apply plugin: "com.ejiahe.gzb.test-plugin"

Learn how to apply plugins to subprojects