Search Gradle plugins

Version 0.0.1 (latest)

Created 26 September 2018.

Gradle plugin to work with localization of IntelliJ

Using the plugins DSL:

plugins {
  id("org.intellij.l10n") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.intellij.l10n:intellij-l10n:0.0.1")
  }
}

apply(plugin = "org.intellij.l10n")

Using the plugins DSL:

plugins {
  id "org.intellij.l10n" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.intellij.l10n:intellij-l10n:0.0.1"
  }
}

apply plugin: "org.intellij.l10n"

Learn how to apply plugins to subprojects