Search Gradle plugins

Version 0.0.1 (latest)

0.0.1

Created 31 August 2018.

Gradle plugin for localization Android apps with Google Spread Sheets

Using the plugins DSL:

plugins {
  id("by.corp.mazan.locomotive") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.by.corp.mazan:locomotive-gradle-plugin:0.0.1")
  }
}

apply(plugin = "by.corp.mazan.locomotive")

Using the plugins DSL:

plugins {
  id "by.corp.mazan.locomotive" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.by.corp.mazan:locomotive-gradle-plugin:0.0.1"
  }
}

apply plugin: "by.corp.mazan.locomotive"

Learn how to apply plugins to subprojects