Search Gradle plugins

Version 2.1.1 (latest)

Created 27 March 2023.

A type-safe units generator

Using the plugins DSL:

plugins {
  id("me.akainth.tape") version "2.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.akainth:tape:2.1.1")
  }
}

apply(plugin = "me.akainth.tape")

Using the plugins DSL:

plugins {
  id "me.akainth.tape" version "2.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.akainth:tape:2.1.1"
  }
}

apply plugin: "me.akainth.tape"

Learn how to apply plugins to subprojects