Search Gradle plugins

Version 1.4 (latest)

Created 06 July 2022.

A Plugin that can hook fromJson method,show cost time

Using the plugins DSL:

plugins {
  id("io.github.LXD312569496.GsonPlugin") version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.lxd312569496:GsonPlugin:1.4")
  }
}

apply(plugin = "io.github.LXD312569496.GsonPlugin")

Using the plugins DSL:

plugins {
  id "io.github.LXD312569496.GsonPlugin" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.lxd312569496:GsonPlugin:1.4"
  }
}

apply plugin: "io.github.LXD312569496.GsonPlugin"

Learn how to apply plugins to subprojects