Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.paopaoyue.ypp-rpc-generator") version "0.1.2-jdk8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.paopaoyue:rpc-generator-gradle-plugin-jdk8:0.1.2-jdk8")
      }
    }
    
    apply(plugin = "io.github.paopaoyue.ypp-rpc-generator")
  • Applying plugins to all subprojects .