Search Gradle plugins

Version 1.2.0

Created 02 December 2020.

The Gradle plugin for no-copy, a Kotlin compiler plugin that performs `copy-erasure` on data classes.

Using the plugins DSL:

plugins {
  id("dev.ahmedmourad.nocopy.nocopy-gradle-plugin") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.2.0")
  }
}

apply(plugin = "dev.ahmedmourad.nocopy.nocopy-gradle-plugin")

Using the plugins DSL:

plugins {
  id "dev.ahmedmourad.nocopy.nocopy-gradle-plugin" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.2.0"
  }
}

apply plugin: "dev.ahmedmourad.nocopy.nocopy-gradle-plugin"

Learn how to apply plugins to subprojects