搜索Gradle插件

版本 1.0.8(最新版)

1.0.8

创建于2022年9月26日。

协助插件开发者将Gradle项目属性分配到插件扩展中的属性。

使用插件的DSL

plugins {
  id("com.redpillanalytics.gradle-properties") version "1.0.8"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.redpillanalytics:gradle-properties:1.0.8")
  }
}

apply(plugin = "com.redpillanalytics.gradle-properties")

使用插件的DSL

plugins {
  id "com.redpillanalytics.gradle-properties" version "1.0.8"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.redpillanalytics:gradle-properties:1.0.8"
  }
}

apply plugin: "com.redpillanalytics.gradle-properties"

学习如何将插件应用到子项目中