com.stefletcher.gradle-javabase-plugin
Owner: Stephen Fletcher
A base plugin to handle my development needs.
Version 1.0.13 (latest)
1.0.13
Created 02 December 2016.
A base plugin to handle my development needs.
Using the plugins DSL:
plugins {
id("com.stefletcher.gradle-javabase-plugin") version "1.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stefletcher.gradle-javabase-plugin:javabaseplugin:1.0.13")
}
}
apply(plugin = "com.stefletcher.gradle-javabase-plugin")
Using the plugins DSL:
plugins {
id "com.stefletcher.gradle-javabase-plugin" version "1.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stefletcher.gradle-javabase-plugin:javabaseplugin:1.0.13"
}
}
apply plugin: "com.stefletcher.gradle-javabase-plugin"