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.4

Created 20 October 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jdzAndroid:Translate:1.1.4")
  }
}

apply(plugin = "io.github.jdzAndroid.Translate")

Using the plugins DSL:

plugins {
  id "io.github.jdzAndroid.Translate" version "1.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jdzAndroid:Translate:1.1.4"
  }
}

apply plugin: "io.github.jdzAndroid.Translate"

Learn how to apply plugins to subprojects