Search Gradle plugins

Version 1.1 (latest)

Created 30 September 2017.

Java code generators for Kentico Cloud. https://kenticocloud.com/

Using the plugins DSL:

plugins {
  id("com.kenticocloud.generator") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.kenticocloud:cloud-generators-gradle:1.1")
  }
}

apply(plugin = "com.kenticocloud.generator")

Using the plugins DSL:

plugins {
  id "com.kenticocloud.generator" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.kenticocloud:cloud-generators-gradle:1.1"
  }
}

apply plugin: "com.kenticocloud.generator"

Learn how to apply plugins to subprojects