dev.shreyaspatil.bytemask.plugin
Owner:
Shreyas Patil
A gradle plugin to generates secured secrets for your application.
https://github.com/PatilShreyas/bytemask
Sources: https://github.com/PatilShreyas/bytemask.git
Version 1.0.0-beta01 (latest)
Created 16 July 2024.
A gradle plugin to generates secured secrets for your application.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.shreyaspatil.bytemask.plugin") version "1.0.0-beta01"
}
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("dev.shreyaspatil.bytemask.plugin:dev.shreyaspatil.bytemask.plugin.gradle.plugin:1.0.0-beta01") }
It can then be applied in the precompiled script plugin:plugins { id("dev.shreyaspatil.bytemask.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.shreyaspatil.bytemask.plugin:dev.shreyaspatil.bytemask.plugin.gradle.plugin:1.0.0-beta01") } } apply(plugin = "dev.shreyaspatil.bytemask.plugin")
- Applying plugins to all subprojects .