Search Gradle plugins

io.github.klahap.dotenv

A plugin for parsing and loading environment variables from .env files

https://github.com/klahap/dotenv

Sources: https://github.com/klahap/dotenv.git

Version 1.0.0

1.0.0

Created 03 August 2024.

A plugin for parsing and loading environment variables from .env files

Using the plugins DSL:

plugins {
  id("io.github.klahap.dotenv") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.klahap.dotenv:dotenv:1.0.0")
  }
}

apply(plugin = "io.github.klahap.dotenv")

Using the plugins DSL:

plugins {
  id "io.github.klahap.dotenv" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.klahap.dotenv:dotenv:1.0.0"
  }
}

apply plugin: "io.github.klahap.dotenv"

Learn how to apply plugins to subprojects