Search Gradle plugins

Version 1.7.1 (latest)

Created 14 May 2022.

apt-plugin

Using the plugins DSL:

plugins {
  id("io.github.jamesfchen.apt-plugin") version "1.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jamesfchen:bundles-assembler-plugin:1.7.1")
  }
}

apply(plugin = "io.github.jamesfchen.apt-plugin")

Using the plugins DSL:

plugins {
  id "io.github.jamesfchen.apt-plugin" version "1.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jamesfchen:bundles-assembler-plugin:1.7.1"
  }
}

apply plugin: "io.github.jamesfchen.apt-plugin"

Learn how to apply plugins to subprojects