Search Gradle plugins

Version 0.1.0 (latest)

Created 14 November 2020.

A gradle plugin to generate message object for gettext.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.oc_soft:gradle-msgfmt:0.1.0")
  }
}

apply(plugin = "net.oc_soft.msgfmt")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.oc_soft:gradle-msgfmt:0.1.0"
  }
}

apply plugin: "net.oc_soft.msgfmt"

Learn how to apply plugins to subprojects