Search Gradle plugins

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.

Using the plugins DSL:

plugins {
  id("org.omegat.gradle") version "2.0.0-rc2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.omegat:gradle-omegat-plugin:2.0.0-rc2")
  }
}

apply(plugin = "org.omegat.gradle")

Using the plugins DSL:

plugins {
  id "org.omegat.gradle" version "2.0.0-rc2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.omegat:gradle-omegat-plugin:2.0.0-rc2"
  }
}

apply plugin: "org.omegat.gradle"

Learn how to apply plugins to subprojects