Search Gradle plugins

Version 0.0.1

Created 19 March 2018.

Gradle POEditor Plugin.

Using the plugins DSL:

plugins {
  id("de.jansauer.poeditor") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.jansauer.poeditor:poeditor:0.0.1")
  }
}

apply(plugin = "de.jansauer.poeditor")

Using the plugins DSL:

plugins {
  id "de.jansauer.poeditor" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.jansauer.poeditor:poeditor:0.0.1"
  }
}

apply plugin: "de.jansauer.poeditor"

Learn how to apply plugins to subprojects