org.omegat.gradle
Owner:
Hiroshi Miura
Integration with OmegaT translation jobs
https://codeberg.org/miurahr/gradle-omegat-plugin
Sources: https://github.com/omegat-org/gralde-omegat-plugin
Version 2.0.0-rc2 (latest)
Created 16 December 2023.
OmegaT plugin for Gradle allow users to run translation tasks with gradle, which intend to help task automation on CI/CD platform such as Github actions, or travis-ci.The plugin also provide a dependency management, manifest generation, omegat runner with debugger and fat-jar generation for omegat-plugin development.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.omegat.gradle") version "2.0.0-rc2"
}
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.omegat.gradle:org.omegat.gradle.gradle.plugin:2.0.0-rc2") }
It can then be applied in the precompiled script plugin:plugins { id("org.omegat.gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.omegat.gradle:org.omegat.gradle.gradle.plugin:2.0.0-rc2") } } apply(plugin = "org.omegat.gradle")
- Applying plugins to all subprojects .