Search Gradle plugins

Version 2.2.25 (latest)

2.2.25

Created 15 December 2017.

The gradle plugin for Itheima edu tool!

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.lxj.plugindemo") version "2.2.25"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.lxj.plugindemo:GradlePluginDemo:2.2.25")
      }
    }
    
    apply(plugin = "com.lxj.plugindemo")
  • Applying plugins to all subprojects .