com.xmllondon.xqrs-gradle-plugin
Owner: Charles Foster
XQRS Gradle Plugin - to be used in conjunction with ml-gradle
https://github.com/cfoster/xqrs-gradle-plugin/
Sources: https://github.com/cfoster/xqrs-gradle-plugin/
Version 1.0.2 (latest)
1.0.2
Created 13 May 2019.
XQRS Gradle Plugin - to be used in conjunction with ml-gradle
Using the plugins DSL:
plugins {
id("com.xmllondon.xqrs-gradle-plugin") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.xmllondon:xqrs-gradle-plugin:1.0.2")
}
}
apply(plugin = "com.xmllondon.xqrs-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.xmllondon.xqrs-gradle-plugin" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.xmllondon:xqrs-gradle-plugin:1.0.2"
}
}
apply plugin: "com.xmllondon.xqrs-gradle-plugin"