com.andrewtasso.test-plugin
Owner: Andrew Tasso
Yet Another Test Plugin!
https://gitlab.com/andrew.tasso/test-gradle-plugin
Sources: https://gitlab.com/andrew.tasso/test-gradle-plugin.git
Version 0.1 (latest)
0.1
Created 16 February 2019.
Yet Another Test Plugin!
Using the plugins DSL:
plugins {
id("com.andrewtasso.test-plugin") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.andrewtasso:test-gradle-plugin:0.1")
}
}
apply(plugin = "com.andrewtasso.test-plugin")
Using the plugins DSL:
plugins {
id "com.andrewtasso.test-plugin" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.andrewtasso:test-gradle-plugin:0.1"
}
}
apply plugin: "com.andrewtasso.test-plugin"