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 1.6.0 (latest)
Created 23 April 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.
Using the plugins DSL:
plugins {
id("org.omegat.gradle") version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.omegat:gradle-omegat-plugin:1.6.0")
}
}
apply(plugin = "org.omegat.gradle")
Using the plugins DSL:
plugins {
id "org.omegat.gradle" version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.omegat:gradle-omegat-plugin:1.6.0"
}
}
apply plugin: "org.omegat.gradle"