Search Gradle plugins

Version 3.0.1

Created 02 December 2020.

A Gradle plugin to query and sync files in a remote git repo.

Using the plugins DSL:

plugins {
  id("com.tinder.gitquery") version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.tinder.gitquery:gradle-plugin:3.0.1")
  }
}

apply(plugin = "com.tinder.gitquery")

Using the plugins DSL:

plugins {
  id "com.tinder.gitquery" version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.tinder.gitquery:gradle-plugin:3.0.1"
  }
}

apply plugin: "com.tinder.gitquery"

Learn how to apply plugins to subprojects