Search Gradle plugins

Version 0.0.19 (latest)

Created 19 December 2022.

A custom Gradle Plugin useful to sync loco string resources to local projects.

Using the plugins DSL:

plugins {
  id("io.github.jonathanimperato.loco-sync") version "0.0.19"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jonathanimperato:loco-sync:0.0.19")
  }
}

apply(plugin = "io.github.jonathanimperato.loco-sync")

Using the plugins DSL:

plugins {
  id "io.github.jonathanimperato.loco-sync" version "0.0.19"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jonathanimperato:loco-sync:0.0.19"
  }
}

apply plugin: "io.github.jonathanimperato.loco-sync"

Learn how to apply plugins to subprojects