com.tinder.gitquery
Owner: Amin Ghadersohi
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)
3.0.12
Created 12 November 2021.
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.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.tinder.gitquery:gradle-plugin:3.0.12")
}
}
apply(plugin = "com.tinder.gitquery")
Using the plugins DSL:
plugins {
id "com.tinder.gitquery" version "3.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.tinder.gitquery:gradle-plugin:3.0.12"
}
}
apply plugin: "com.tinder.gitquery"