by.corp.mazan.locomotive
Owner: Max Vinnik
Gradle plugin for localization Android apps with Google Spread Sheets
https://gitlab.com/mazan_corp/LocoMotive/LocoMotive-Gradle-Plugin
Sources: https://gitlab.com/mazan_corp/LocoMotive/LocoMotive-Gradle-Plugin.git
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"