Search Gradle plugins

Version 0.0.1 (latest)

Created 13 May 2021.

Plugin for screening

Using the plugins DSL:

plugins {
  id("com.medly.screen.kotlin") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.medly.screen:kotlin:0.0.1")
  }
}

apply(plugin = "com.medly.screen.kotlin")

Using the plugins DSL:

plugins {
  id "com.medly.screen.kotlin" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.medly.screen:kotlin:0.0.1"
  }
}

apply plugin: "com.medly.screen.kotlin"

Learn how to apply plugins to subprojects