com.kenticocloud.generator
Owner:
Adam J. Weigold
Java code generators for Kentico Cloud. https://kenticocloud.com/
Sources: https://github.com/Kentico/cloud-generators-java.git
Version 1.1 (latest)
Created 30 September 2017.
Java code generators for Kentico Cloud. https://kenticocloud.com/
Add this plugin to your build using the plugins DSL:
plugins {
id("com.kenticocloud.generator") version "1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.kenticocloud.generator:com.kenticocloud.generator.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.kenticocloud.generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.kenticocloud.generator:com.kenticocloud.generator.gradle.plugin:1.1") } } apply(plugin = "com.kenticocloud.generator")
- Applying plugins to all subprojects .