Search Gradle plugins

Version 1.2 (latest)

Created 18 March 2019.

Do the pre translation stuff.

Using the plugins DSL:

plugins {
  id("com.massarttech.translation") version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.massarttech.translation:buildSrc:1.2")
  }
}

apply(plugin = "com.massarttech.translation")

Using the plugins DSL:

plugins {
  id "com.massarttech.translation" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.massarttech.translation:buildSrc:1.2"
  }
}

apply plugin: "com.massarttech.translation"

Learn how to apply plugins to subprojects