com.jereksel.jailbreakk
Owner: Andrzej Ressel
Typesafe reflection for Kotlin
https://github.com/jereksel/jailbreakk
Sources: https://github.com/jereksel/jailbreakk
Version 0.0.2 (latest)
0.0.2
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"