搜索Gradle插件

版本 1.2.41(最新版)

1.2.41

创建于 2024年7月27日。

自动提取所有字符串进行本地化

使用插件DSL

plugins {
  id("de.l11n.gettext.gradle-gettext-plugin") version "1.2.41"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.l11n.gettext:gettext-gradle-plugin:1.2.41")
  }
}

apply(plugin = "de.l11n.gettext.gradle-gettext-plugin")

使用插件DSL

plugins {
  id "de.l11n.gettext.gradle-gettext-plugin" version "1.2.41"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.l11n.gettext:gettext-gradle-plugin:1.2.41"
  }
}

apply plugin: "de.l11n.gettext.gradle-gettext-plugin"

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