Search Gradle plugins

com.github.dgmartin.Dragomock

Dragomock is a mock translation generator. It is used to create more natural mock translations that provide developers a better idea of how their code and UI will perform under more natural localization test cases. It can also be used for demonstrating the localization abilities in an app.

https://github.com/dgmartin/Dragomock

Sources: https://github.com/dgmartin/Dragomock

Version 0.5

Created 05 December 2017.

Dragomock is a mock translation generator. It is used to create more natural mock translations that provide developers a better idea of how their code and UI will perform under more natural localization test cases. It can also be used for demonstrating the localization abilities in an app.

Using the plugins DSL:

plugins {
  id("com.github.dgmartin.Dragomock") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.dgmartin:dragomock:0.5")
  }
}

apply(plugin = "com.github.dgmartin.Dragomock")

Using the plugins DSL:

plugins {
  id "com.github.dgmartin.Dragomock" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.dgmartin:dragomock:0.5"
  }
}

apply plugin: "com.github.dgmartin.Dragomock"

Learn how to apply plugins to subprojects