Search Gradle plugins

Version 0.95 (latest)

Created 21 August 2022.

grale plugin for check anonymous thread

Using the plugins DSL:

plugins {
  id("io.github.season-max.anonymousThreadCheck") version "0.95"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.season-max:plugins:0.95")
  }
}

apply(plugin = "io.github.season-max.anonymousThreadCheck")

Using the plugins DSL:

plugins {
  id "io.github.season-max.anonymousThreadCheck" version "0.95"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.season-max:plugins:0.95"
  }
}

apply plugin: "io.github.season-max.anonymousThreadCheck"

Learn how to apply plugins to subprojects