Search Gradle plugins

ru.ozon.kelp

Owner: Ozon

Companion plugin for the Kelp IDE plugin for Design Systems that assists in IDE plugin presence detection and downloading of the demo app apk

https://github.com/ozontech/kelp?tab=readme-ov-file#-gradle-plugin

Sources: https://github.com/ozontech/kelp

Version 0.0.4 (latest)

0.0.4

Created 03 July 2024.

Companion plugin for the Kelp IDE plugin for Design Systems that assists in IDE plugin presence detection and downloading of the demo app apk

Using the plugins DSL:

plugins {
  id("ru.ozon.kelp") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.ozon.kelp:kelpGradlePlugin:0.0.4")
  }
}

apply(plugin = "ru.ozon.kelp")

Using the plugins DSL:

plugins {
  id "ru.ozon.kelp" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.ozon.kelp:kelpGradlePlugin:0.0.4"
  }
}

apply plugin: "ru.ozon.kelp"

Learn how to apply plugins to subprojects