Search Gradle plugins

com.itheima.edugp

The gradle plugin for Itheima edu tool!

http://www.itcast.cn

Sources: http://www.itcast.cn

Version test-0.0.4 (latest)

Created 20 December 2017.

The gradle plugin for Itheima edu tool!

Using the plugins DSL:

plugins {
  id("com.itheima.edugp") version "test-0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.itheima.edugp:ItheimaEduGP:test-0.0.4")
  }
}

apply(plugin = "com.itheima.edugp")

Using the plugins DSL:

plugins {
  id "com.itheima.edugp" version "test-0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.itheima.edugp:ItheimaEduGP:test-0.0.4"
  }
}

apply plugin: "com.itheima.edugp"

Learn how to apply plugins to subprojects