Search Gradle plugins

io.github.jdzAndroid.Translate

Owner: dezhi

A plug-in that extracts corresponding countries from EXCEL documents and translates them into XML files

https://github.com/jdzAndroid/Translate

Sources: https://github.com/jdzAndroid/Translate.git

Version 1.1.5 (latest)

Created 07 November 2022.

A plug-in that extracts corresponding countries from EXCEL documents and translates them into XML files

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.jdzAndroid.Translate") version "1.1.5"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.jdzAndroid.Translate:io.github.jdzAndroid.Translate.gradle.plugin:1.1.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.jdzAndroid.Translate")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.jdzAndroid.Translate:io.github.jdzAndroid.Translate.gradle.plugin:1.1.5")
      }
    }
    
    apply(plugin = "io.github.jdzAndroid.Translate")
  • Applying plugins to all subprojects .