Search Gradle plugins

Version 0.0.1

Created 14 December 2019.

apl bytecode tools

Using the plugins DSL:

plugins {
  id("apl.bytecode.tools") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.sire:APLPlugin:0.0.1")
  }
}

apply(plugin = "apl.bytecode.tools")

Using the plugins DSL:

plugins {
  id "apl.bytecode.tools" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.sire:APLPlugin:0.0.1"
  }
}

apply plugin: "apl.bytecode.tools"

Learn how to apply plugins to subprojects