Search Gradle plugins

io.github.jvmusin.naked

Kotlin Compiler Plugin which allows to inline value classes to avoid unnecessary boxing when value classes are used as nullable or generic type.

https://github.com/jvmusin/naked

Sources: https://github.com/jvmusin/naked

Version 0.0.4 (latest)

Created 01 September 2023.

Kotlin Compiler Plugin which allows to inline value classes to avoid unnecessary boxing when value classes are used as nullable or generic type

Using the plugins DSL:

plugins {
  id("io.github.jvmusin.naked") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jvmusin.naked:naked-gradle-plugin:0.0.4")
  }
}

apply(plugin = "io.github.jvmusin.naked")

Using the plugins DSL:

plugins {
  id "io.github.jvmusin.naked" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jvmusin.naked:naked-gradle-plugin:0.0.4"
  }
}

apply plugin: "io.github.jvmusin.naked"

Learn how to apply plugins to subprojects