de.jansauer.poeditor
Owner: Jan Sauer
Gradle POEditor Plugin.
https://github.com/jansauer/gradle-poeditor-plugin
Sources: https://github.com/jansauer/gradle-poeditor-plugin
Version 1.1.0 (latest)
1.1.0
Created 22 March 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle POEditor Plugin.
Using the plugins DSL:
plugins {
id("de.jansauer.poeditor") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.jansauer.poeditor:poeditor:1.1.0")
}
}
apply(plugin = "de.jansauer.poeditor")
Using the plugins DSL:
plugins {
id "de.jansauer.poeditor" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.jansauer.poeditor:poeditor:1.1.0"
}
}
apply plugin: "de.jansauer.poeditor"