Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 15 March 2024.

Gradle plugin that loads environment files and system variables automatically.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.uoxx3.project-environment") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.uoxx3:project-environment:1.0.1")
      }
    }
    
    apply(plugin = "io.github.uoxx3.project-environment")
  • Applying plugins to all subprojects .