Search Gradle plugins

Version 0.1.4

Created 06 October 2021.

Gradle plugin for Capsule.

Using the plugins DSL:

plugins {
  id("com.github.ngyewch.capsule") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ngyewch.gradle:gradle-capsule-plugin:0.1.4")
  }
}

apply(plugin = "com.github.ngyewch.capsule")

Using the plugins DSL:

plugins {
  id "com.github.ngyewch.capsule" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ngyewch.gradle:gradle-capsule-plugin:0.1.4"
  }
}

apply plugin: "com.github.ngyewch.capsule"

Learn how to apply plugins to subprojects