Search Gradle plugins

com.tinder.gitquery

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

https://github.com/Tinder/GitQuery

Sources: https://github.com/Tinder/GitQuery

Version 3.0.12 (latest)

Created 12 November 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.tinder.gitquery:com.tinder.gitquery.gradle.plugin:3.0.12")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.tinder.gitquery")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.tinder.gitquery:com.tinder.gitquery.gradle.plugin:3.0.12")
      }
    }
    
    apply(plugin = "com.tinder.gitquery")
  • Applying plugins to all subprojects .