enterprise.groovy.plugin
Owner: Tucker J Pelletier
The Enterprise Groovy Plugin provides static compilation by default, and optional enforcement.
https://virtualdogbert.github.io/enterprise-groovy-plugin/
Sources: https://github.com/virtualdogbert/enterprise-groovy-plugin.git
Version 1.0.5 (latest)
1.0.5
Created 30 April 2020.
The Enterprise Groovy Plugin provides static compilation by default, and optional enforcement.
Using the plugins DSL:
plugins {
id("enterprise.groovy.plugin") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.virtualdogbert:enterprise-groovy-plugin:1.0.5")
}
}
apply(plugin = "enterprise.groovy.plugin")
Using the plugins DSL:
plugins {
id "enterprise.groovy.plugin" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.virtualdogbert:enterprise-groovy-plugin:1.0.5"
}
}
apply plugin: "enterprise.groovy.plugin"