com.github.dgmartin.Dragomock
Owner: Dan Martin
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.09.00 (latest)
Created 14 October 2020.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.dgmartin.Dragomock") version "0.09.00"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.github.dgmartin.Dragomock:com.github.dgmartin.Dragomock.gradle.plugin:0.09.00") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.dgmartin.Dragomock") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.dgmartin.Dragomock:com.github.dgmartin.Dragomock.gradle.plugin:0.09.00") } } apply(plugin = "com.github.dgmartin.Dragomock")
- Applying plugins to all subprojects .