Search Gradle plugins

Version 0.1.4-beta (latest)

Created 13 January 2024.

A plugin for code obfuscation.

Using the plugins DSL:

plugins {
  id("cn.dorck.code.guarder") version "0.1.4-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cn.dorck:code-guard:0.1.4-beta")
  }
}

apply(plugin = "cn.dorck.code.guarder")

Using the plugins DSL:

plugins {
  id "cn.dorck.code.guarder" version "0.1.4-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cn.dorck:code-guard:0.1.4-beta"
  }
}

apply plugin: "cn.dorck.code.guarder"

Learn how to apply plugins to subprojects