com.mendhak.gradlecrowdin
Owner: mendhak
Gradle plugin for Crowdin
https://github.com/mendhak/gradle-crowdin-plugin
Sources: https://github.com/mendhak/gradle-crowdin-plugin.git
Version 0.1.1 (latest)
0.1.1
Created 23 August 2020.
Gradle plugin for Crowdin.com, download and upload translation files
Using the plugins DSL:
plugins {
id("com.mendhak.gradlecrowdin") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.mendhak.gradlecrowdin:plugin:0.1.1")
}
}
apply(plugin = "com.mendhak.gradlecrowdin")
Using the plugins DSL:
plugins {
id "com.mendhak.gradlecrowdin" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mendhak.gradlecrowdin:plugin:0.1.1"
}
}
apply plugin: "com.mendhak.gradlecrowdin"