Search Gradle plugins

Version 0.4 (latest)

Created 02 May 2019.

Removes final restriction from all Kotlin classes

Using the plugins DSL:

plugins {
  id("no.synth.kotlin-really-allopen") version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("no.synth:kotlin-really-allopen:0.4")
  }
}

apply(plugin = "no.synth.kotlin-really-allopen")

Using the plugins DSL:

plugins {
  id "no.synth.kotlin-really-allopen" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "no.synth:kotlin-really-allopen:0.4"
  }
}

apply plugin: "no.synth.kotlin-really-allopen"

Learn how to apply plugins to subprojects