Owner:
Hiroshi Miura
Integration with OmegaT translation jobs
Version 1.5.10
Created 28 November 2022.
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 "1.5.10"
}
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:1.5.10") }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:1.5.10") } } apply(plugin = "org.omegat.gradle") - Applying plugins to all subprojects .