Search Gradle plugins

Version 2.1.8 (latest)

2.1.8

Created 10 July 2023.

The common plugin of Mod Patching

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.anatawa12.mod-patching.common") version "2.1.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.anatawa12.mod-patching:gradle-plugin:2.1.8")
      }
    }
    
    apply(plugin = "com.anatawa12.mod-patching.common")
  • Applying plugins to all subprojects .