org.zaproxy.crowdin
Owner:
zapbot - ZAP helper bot
A Gradle plugin to integrate with Crowdin.
https://github.com/zaproxy/gradle-plugin-crowdin
Sources: https://github.com/zaproxy/gradle-plugin-crowdin.git
Version 0.6.0 (latest)
Created 27 February 2025.
A Gradle plugin to integrate with Crowdin.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.zaproxy.crowdin") version "0.6.0"
}
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("org.zaproxy.crowdin:org.zaproxy.crowdin.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.zaproxy.crowdin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.zaproxy.crowdin:org.zaproxy.crowdin.gradle.plugin:0.6.0") } } apply(plugin = "org.zaproxy.crowdin")
- Applying plugins to all subprojects .