Search Gradle plugins

Version 0.1.1 (latest)

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"

Learn how to apply plugins to subprojects