com.massarttech.translation
Owner: اسامة بن عمر
Do the pre translation stuff.
Sources: https://gitlab.com/massarttech/translation-api
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"