Search Gradle plugins

Version 0.1 (latest)

0.1

Created 26 December 2019.

Easy to load properties in project

Using the plugins DSL:

plugins {
  id("cn.alvince.properties-loader") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ElephantGum:property-loader:0.1")
  }
}

apply(plugin = "cn.alvince.properties-loader")

Using the plugins DSL:

plugins {
  id "cn.alvince.properties-loader" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ElephantGum:property-loader:0.1"
  }
}

apply plugin: "cn.alvince.properties-loader"

Learn how to apply plugins to subprojects