com.github.otkmnb2783.dotenv
Owner:
Manabu OHTAKE
This plugin loads the dotenv file so that it can be referenced from build.gradle.
https://github.com/otkmnb2783/gradle-dotenv-plugin
Sources: https://github.com/otkmnb2783/gradle-dotenv-plugin
Version 0.2.0 (latest)
Created 10 February 2021.
This plugin loads the dotenv file so that it can be referenced from build.gradle.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.otkmnb2783.dotenv") version "0.2.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("com.github.otkmnb2783.dotenv:com.github.otkmnb2783.dotenv.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.otkmnb2783.dotenv") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.otkmnb2783.dotenv:com.github.otkmnb2783.dotenv.gradle.plugin:0.2.0") } } apply(plugin = "com.github.otkmnb2783.dotenv")
- Applying plugins to all subprojects .