Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 14 November 2020.

A gradle plugin to generate message object for gettext.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.oc_soft.msgfmt") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.oc_soft:gradle-msgfmt:0.1.0")
      }
    }
    
    apply(plugin = "net.oc_soft.msgfmt")
  • Applying plugins to all subprojects .