搜索Gradle插件

版本 0.2.0(最新版)

0.2.0

创建于 2021年2月10日。

此插件加载dotenv文件,以便可以从build.gradle中引用。

使用插件DSL

plugins {
  id("com.github.otkmnb2783.dotenv") version "0.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.otkmnb2783:dotenv-plugins:0.2.0")
  }
}

apply(plugin = "com.github.otkmnb2783.dotenv")

使用插件DSL

plugins {
  id "com.github.otkmnb2783.dotenv" version "0.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.otkmnb2783:dotenv-plugins:0.2.0"
  }
}

apply plugin: "com.github.otkmnb2783.dotenv"

了解如何应用插件到子项目