搜索 Gradle 插件

com.betomorrow.gradle.wording

所有者: Gauthier

插件可以将 Google Sheet 中的术语导入,然后将其整合到标准的术语文件中。

https://github.com/oliviergauthier/gradle-wording-plugin

来源: https://github.com/oliviergauthier/gradle-wording-plugin

版本 3.0.2 (最新)

3.0.2

创建于 2023 年 2 月 28 日。

插件可以将 Google Sheet 中的术语导入,然后将其整合到标准的术语文件中。

使用 plugins DSL

plugins {
  id("com.betomorrow.gradle.wording") version "3.0.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.betomorrow.gradle:gradle-android-wording-plugin:3.0.2")
  }
}

apply(plugin = "com.betomorrow.gradle.wording")

使用 plugins DSL

plugins {
  id "com.betomorrow.gradle.wording" version "3.0.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.betomorrow.gradle:gradle-android-wording-plugin:3.0.2"
  }
}

apply plugin: "com.betomorrow.gradle.wording"

学习如何向子项目应用插件