Search Gradle plugins

Version 0.2 (latest)

Created 18 February 2023.

BuildConfig and R class generator for non-Android projects

Using the plugins DSL:

plugins {
  id("com.hendraanggrian.generating") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.hendraanggrian.generating:generating-gradle-plugin:0.2")
  }
}

apply(plugin = "com.hendraanggrian.generating")

Using the plugins DSL:

plugins {
  id "com.hendraanggrian.generating" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.hendraanggrian.generating:generating-gradle-plugin:0.2"
  }
}

apply plugin: "com.hendraanggrian.generating"

Learn how to apply plugins to subprojects