Search Gradle plugins

Version 1.6.0

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"

Learn how to apply plugins to subprojects