dev.ahmedmourad.nocopy.nocopy-gradle-plugin
Owner: Ahmed Mourad
The Gradle plugin for no-copy, a Kotlin compiler plugin that performs `copy-erasure` on data classes.
http://nocopy.ahmedmourad.dev/
Sources: https://github.com/AhmedMourad0/no-copy
Version 1.5.0 (latest)
1.5.0
Created 21 February 2024.
The Gradle plugin for no-copy, a Kotlin compiler plugin that removes the `copy` method of data classes.
Using the plugins DSL:
plugins {
id("dev.ahmedmourad.nocopy.nocopy-gradle-plugin") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.5.0")
}
}
apply(plugin = "dev.ahmedmourad.nocopy.nocopy-gradle-plugin")
Using the plugins DSL:
plugins {
id "dev.ahmedmourad.nocopy.nocopy-gradle-plugin" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.5.0"
}
}
apply plugin: "dev.ahmedmourad.nocopy.nocopy-gradle-plugin"