enterprises.iwakura.amber
Owner:
Marek Lof
This plugin allows you to quickly specify dependencies for Amber to download and load on your application's startup.
Sources: https://github.com/iwakura-enterprises/amber.git
Version 1.0.0 (latest)
Created 09 September 2025.
This plugin allows you to quickly specify dependencies for Amber to download and load on your application's startup.
Add this plugin to your build using the plugins DSL:
plugins {
id("enterprises.iwakura.amber") version "1.0.0"
}
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("enterprises.iwakura.amber:enterprises.iwakura.amber.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("enterprises.iwakura.amber") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("enterprises.iwakura.amber:enterprises.iwakura.amber.gradle.plugin:1.0.0") } } apply(plugin = "enterprises.iwakura.amber")
- Applying plugins to all subprojects .