Search Gradle plugins

Version 1.0.11

Created 16 July 2018.

Android componentized automatic build script

Using the plugins DSL:

plugins {
  id("calces.appconfig") version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.tangpj.tools:calces:1.0.11")
  }
}

apply(plugin = "calces.appconfig")

Using the plugins DSL:

plugins {
  id "calces.appconfig" version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.tangpj.tools:calces:1.0.11"
  }
}

apply plugin: "calces.appconfig"

Learn how to apply plugins to subprojects