Search Gradle plugins

Version 0.0.2 (latest)

Created 23 December 2019.

Typesafe reflection for Kotlin

Using the plugins DSL:

plugins {
  id("com.jereksel.jailbreakk") version "0.0.2"
}

Using legacy plugin application:

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

apply(plugin = "com.jereksel.jailbreakk")

Using the plugins DSL:

plugins {
  id "com.jereksel.jailbreakk" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.jereksel.jailbreakk:gradle-plugin:0.0.2"
  }
}

apply plugin: "com.jereksel.jailbreakk"

Learn how to apply plugins to subprojects